From: Mark Adler Date: Sun, 8 Jul 2012 23:48:36 +0000 (-0700) Subject: Remove unused variable in infback9.c. X-Git-Tag: v1.2.7.1~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aef4174dd2b95029e29e004f4d4cae684d396033;p=thirdparty%2Fzlib-ng.git Remove unused variable in infback9.c. --- diff --git a/contrib/infback9/infback9.c b/contrib/infback9/infback9.c index 7bbe90ced..3691d4a00 100644 --- a/contrib/infback9/infback9.c +++ b/contrib/infback9/infback9.c @@ -229,7 +229,6 @@ void FAR *out_desc; inflate_mode mode; /* current inflate mode */ int lastblock; /* true if processing last block */ int wrap; /* true if the window has wrapped */ - unsigned long write; /* window write index */ unsigned char FAR *window; /* allocated sliding window, if needed */ unsigned long hold; /* bit buffer */ unsigned bits; /* bits in bit buffer */ @@ -259,7 +258,6 @@ void FAR *out_desc; strm->msg = Z_NULL; mode = TYPE; lastblock = 0; - write = 0; wrap = 0; window = state->window; next = strm->next_in;