From 771947f7607661e13357caebb7c2b27dc474be88 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 5 Aug 2013 06:10:16 +0000 Subject: zlib update to 1.2.8 git-svn-id: http://svn.miranda-ng.org/main/trunk@5582 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Zlib/src/uncompr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/Zlib/src/uncompr.c') diff --git a/plugins/Zlib/src/uncompr.c b/plugins/Zlib/src/uncompr.c index ad98be3a5d..242e9493df 100644 --- a/plugins/Zlib/src/uncompr.c +++ b/plugins/Zlib/src/uncompr.c @@ -30,7 +30,7 @@ int ZEXPORT uncompress (dest, destLen, source, sourceLen) z_stream stream; int err; - stream.next_in = (Bytef*)source; + stream.next_in = (z_const 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; -- cgit v1.2.3