From 1101ea79c65c6f42c33a1e3a5d5eef38c00a30a2 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Tue, 22 Nov 2016 12:02:29 -0800 Subject: Explicitly ignore a return value in gzwrite.c. --- gzwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gzwrite.c b/gzwrite.c index 1696692..b03097c 100644 --- a/gzwrite.c +++ b/gzwrite.c @@ -515,7 +515,7 @@ int ZEXPORT gzflush(file, flush) } /* compress remaining data with requested flush */ - gz_comp(state, flush); + (void)gz_comp(state, flush); return state->err; } -- cgit v1.2.3-55-g6feb