From: Nathan Moinvaziri Date: Fri, 20 Sep 2019 22:37:00 +0000 (-0700) Subject: Fixed crc1 unused variable warning. #418. X-Git-Tag: 1.9.9-b1~420 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b598219985a3d72dcc8fddd0b3e45042f72db439;p=thirdparty%2Fzlib-ng.git Fixed crc1 unused variable warning. #418. --- diff --git a/test/fuzz/checksum_fuzzer.c b/test/fuzz/checksum_fuzzer.c index 058fa7ff..0f7db522 100644 --- a/test/fuzz/checksum_fuzzer.c +++ b/test/fuzz/checksum_fuzzer.c @@ -49,6 +49,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t dataLen) { crc2 = PREFIX(crc32_z)(crc2, data, dataLen); assert(crc1 == crc2); + (void)crc1; (void)crc2; assert(PREFIX(crc32_combine)(crc1, crc2, dataLen) == PREFIX(crc32_combine)(crc1, crc1, dataLen));