Explicitly ignore a return value in gzwrite.c.

This commit is contained in:
Mark Adler 2016-11-22 12:02:29 -08:00
parent 21c66cd5ac
commit 1101ea79c6

View File

@ -515,7 +515,7 @@ int ZEXPORT gzflush(file, flush)
} }
/* compress remaining data with requested flush */ /* compress remaining data with requested flush */
gz_comp(state, flush); (void)gz_comp(state, flush);
return state->err; return state->err;
} }