From 3365464851a972fe8ad217b93e80c7cd185a8179 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Mon, 17 Apr 2023 20:21:58 -0700 Subject: [PATCH] Fix warnings on test/infcover.c. --- test/infcover.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/infcover.c b/test/infcover.c index 2be01646..8912c403 100644 --- a/test/infcover.c +++ b/test/infcover.c @@ -373,7 +373,7 @@ local void cover_support(void) mem_setup(&strm); strm.avail_in = 0; strm.next_in = Z_NULL; - ret = inflateInit_(&strm, ZLIB_VERSION - 1, (int)sizeof(z_stream)); + ret = inflateInit_(&strm, "!", (int)sizeof(z_stream)); assert(ret == Z_VERSION_ERROR); mem_done(&strm, "wrong version"); @@ -462,7 +462,8 @@ local unsigned pull(void *desc, unsigned char **buf) local int push(void *desc, unsigned char *buf, unsigned len) { - buf += len; + (void)buf; + (void)len; return desc != Z_NULL; /* force error if desc not null */ }