aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/infback9/infback9.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/infback9/infback9.c b/contrib/infback9/infback9.c
index 7bbe90c..3691d4a 100644
--- a/contrib/infback9/infback9.c
+++ b/contrib/infback9/infback9.c
@@ -229,7 +229,6 @@ void FAR *out_desc;
229 inflate_mode mode; /* current inflate mode */ 229 inflate_mode mode; /* current inflate mode */
230 int lastblock; /* true if processing last block */ 230 int lastblock; /* true if processing last block */
231 int wrap; /* true if the window has wrapped */ 231 int wrap; /* true if the window has wrapped */
232 unsigned long write; /* window write index */
233 unsigned char FAR *window; /* allocated sliding window, if needed */ 232 unsigned char FAR *window; /* allocated sliding window, if needed */
234 unsigned long hold; /* bit buffer */ 233 unsigned long hold; /* bit buffer */
235 unsigned bits; /* bits in bit buffer */ 234 unsigned bits; /* bits in bit buffer */
@@ -259,7 +258,6 @@ void FAR *out_desc;
259 strm->msg = Z_NULL; 258 strm->msg = Z_NULL;
260 mode = TYPE; 259 mode = TYPE;
261 lastblock = 0; 260 lastblock = 0;
262 write = 0;
263 wrap = 0; 261 wrap = 0;
264 window = state->window; 262 window = state->window;
265 next = strm->next_in; 263 next = strm->next_in;