From 55c92cc642442d2b0ff3ab98dc603f6d9ea45bc9 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 9 May 2014 01:28:42 +0200 Subject: [PATCH] Fix CID 715926 --- shlr/zip/zlib/gzwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shlr/zip/zlib/gzwrite.c b/shlr/zip/zlib/gzwrite.c index aa767fbf63..583e4e81a5 100644 --- a/shlr/zip/zlib/gzwrite.c +++ b/shlr/zip/zlib/gzwrite.c @@ -489,7 +489,7 @@ int ZEXPORT gzflush(file, flush) } /* compress remaining data with requested flush */ - gz_comp(state, flush); + (void)gz_comp(state, flush); return state->err; }