diff options
Diffstat (limited to 'infback.c')
-rw-r--r-- | infback.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ int ZEXPORT inflateBackInit_(z_stream *strm, int windowBits, unsigned char *wind Tracev((stderr, "inflate: allocated\n")); strm->state = (struct internal_state *)state; state->dmax = 32768U; - state->wbits = (uInt)windowBits; + state->wbits = (unsigned int)windowBits; state->wsize = 1U << windowBits; state->window = window; state->wnext = 0; |