diff options
author | Adam Eijdenberg <adam.eijdenberg@gmail.com> | 2015-08-05 01:29:07 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-08-06 23:45:29 +0200 |
commit | e23a3fc8e38a889035bf0964c70c7699f4a38e5c (patch) | |
tree | 320736299730b06c0d25abfa147f68b738927436 /test/packettest.c | |
parent | Revert "Fix uninitalised warning." (diff) | |
download | openssl-e23a3fc8e38a889035bf0964c70c7699f4a38e5c.tar.xz openssl-e23a3fc8e38a889035bf0964c70c7699f4a38e5c.zip |
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.c | 1 |
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; } |