aboutsummaryrefslogtreecommitdiffstats
path: root/test/packettest.c
diff options
context:
space:
mode:
authorAdam Eijdenberg <adam.eijdenberg@gmail.com>2015-08-04 16:29:07 -0700
committerMatt Caswell <matt@openssl.org>2015-08-06 22:45:29 +0100
commite23a3fc8e38a889035bf0964c70c7699f4a38e5c (patch)
tree320736299730b06c0d25abfa147f68b738927436 /test/packettest.c
parent04fe876b5616793b32e92e965a662bbbed7f71d1 (diff)
downloadopenssl-e23a3fc8e38a889035bf0964c70c7699f4a38e5c.tar.gz
Fix clang uninitialized variable warning.
We could just initialize it, but to be consistent with the rest of the file it seemed to make more sense to just drop. Reviewed-by: Ben Laurie <ben@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'test/packettest.c')
-rw-r--r--test/packettest.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/packettest.c b/test/packettest.c
index 1ddb837149..d6d0c082f5 100644
--- a/test/packettest.c
+++ b/test/packettest.c
@@ -140,7 +140,6 @@ static int test_PACKET_get_net_3(PACKET *pkt, size_t start)
|| !PACKET_get_net_3(pkt, &i)
|| i != 0xfafcfeUL
|| PACKET_get_net_3(pkt, &i)) {
- fprintf(stderr, "i is %ld\n", i);
fprintf(stderr, "test_PACKET_get_net_3() failed\n");
return 0;
}