| Index: third_party/zlib/uncompr.c
|
| diff --git a/third_party/zlib/uncompr.c b/third_party/zlib/uncompr.c
|
| index 242e9493dff5c26d7f06104b6dd1ca22d8201215..ad98be3a5d88afd479d3442cd234747ca259c60d 100644
|
| --- a/third_party/zlib/uncompr.c
|
| +++ b/third_party/zlib/uncompr.c
|
| @@ -30,7 +30,7 @@
|
| z_stream stream;
|
| int err;
|
|
|
| - stream.next_in = (z_const Bytef *)source;
|
| + stream.next_in = (Bytef*)source;
|
| stream.avail_in = (uInt)sourceLen;
|
| /* Check for source > 64K on 16-bit machine: */
|
| if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
|
|