commit | c20bcde58dc2ed770900ab553ac663f2f1212fc2 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Mon Oct 21 12:03:09 2013 +0200 |
committer | Christian Heimes <christian@cheimes.de> | Mon Oct 21 12:03:09 2013 +0200 |
tree | 05eb7cad3054f3c5b8e557d40ef97bce5a416026 | |
parent | 3ac1eb16d5c4b779da38895597ee5d7caf3d22bd [diff] [blame] |
Issue #18527: Upgrade internal copy of zlib to 1.2.8
diff --git a/Modules/zlib/compress.c b/Modules/zlib/compress.c index ea4dfbe..6e97626 100644 --- a/Modules/zlib/compress.c +++ b/Modules/zlib/compress.c
@@ -29,7 +29,7 @@ z_stream stream; int err; - stream.next_in = (Bytef*)source; + stream.next_in = (z_const Bytef *)source; stream.avail_in = (uInt)sourceLen; #ifdef MAXSEG_64K /* Check for source > 64K on 16-bit machine: */