Commit e23a3fc8 authored by Adam Eijdenberg's avatar Adam Eijdenberg Committed by Matt Caswell
Browse files

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: default avatarBen Laurie <ben@openssl.org>
Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent 04fe876b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;
    }