summaryrefslogtreecommitdiff
path: root/plugins/Zlib/src/inffast.c
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-08-05 06:10:16 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-08-05 06:10:16 +0000
commit771947f7607661e13357caebb7c2b27dc474be88 (patch)
tree5f6fa6ac96082df8d29f43504965c405cf7afaa2 /plugins/Zlib/src/inffast.c
parentcfe8ca0a75ce9dcb2044e6e17f40b294f35d6366 (diff)
zlib update to 1.2.8
git-svn-id: http://svn.miranda-ng.org/main/trunk@5582 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Zlib/src/inffast.c')
-rw-r--r--plugins/Zlib/src/inffast.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Zlib/src/inffast.c b/plugins/Zlib/src/inffast.c
index 2f1d60b43b..bda59ceb6a 100644
--- a/plugins/Zlib/src/inffast.c
+++ b/plugins/Zlib/src/inffast.c
@@ -1,5 +1,5 @@
/* inffast.c -- fast decoding
- * Copyright (C) 1995-2008, 2010 Mark Adler
+ * Copyright (C) 1995-2008, 2010, 2013 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
@@ -69,8 +69,8 @@ z_streamp strm;
unsigned start; /* inflate()'s starting value for strm->avail_out */
{
struct inflate_state FAR *state;
- unsigned char FAR *in; /* local strm->next_in */
- unsigned char FAR *last; /* while in < last, enough input available */
+ z_const unsigned char FAR *in; /* local strm->next_in */
+ z_const unsigned char FAR *last; /* have enough input while in < last */
unsigned char FAR *out; /* local strm->next_out */
unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
unsigned char FAR *end; /* while out < end, enough space available */