summaryrefslogtreecommitdiff
path: root/zlib/infback.c
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2020-01-04 00:03:46 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2020-01-04 01:38:10 +0100
commit62cdfbcfa2a4ae323106be6311048132772e525f (patch)
tree6d9adb5bdbf5719e46787ca0d857031d328e87e2 /zlib/infback.c
parentbebb116a06fbc6f57049416c721198b363161480 (diff)
Upgrade bundled zlib from 1.2.8 to 1.2.11
Release: 1.2.11 - January 15, 2017 For further details see README.bundled-libs.txt.
Diffstat (limited to 'zlib/infback.c')
-rw-r--r--zlib/infback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zlib/infback.c b/zlib/infback.c
index f3833c2e4..59679ecbf 100644
--- a/zlib/infback.c
+++ b/zlib/infback.c
@@ -1,5 +1,5 @@
/* infback.c -- inflate using a call-back interface
- * Copyright (C) 1995-2011 Mark Adler
+ * Copyright (C) 1995-2016 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
@@ -61,7 +61,7 @@ int stream_size;
Tracev((stderr, "inflate: allocated\n"));
strm->state = (struct internal_state FAR *)state;
state->dmax = 32768U;
- state->wbits = windowBits;
+ state->wbits = (uInt)windowBits;
state->wsize = 1U << windowBits;
state->window = window;
state->wnext = 0;