diff options
author | Daniel Axtens <dja@axtens.net> | 2015-05-08 19:36:07 +1000 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-13 14:18:18 +0200 |
commit | 48f9b2a0e992c59db68ab36f597f3893f3fcb98d (patch) | |
tree | 69bba760d249ee8b4ed640745fede75e68842e60 /uncompr.c | |
parent | 402697d5cfcb8e10d8ef0501e830a86f63ba3a46 (diff) |
z_const -> const
Signed-off-by: Daniel Axtens <dja@axtens.net>
Conflicts:
arch/x86/crc_folding.c
crc32.c
Diffstat (limited to 'uncompr.c')
-rw-r--r-- | uncompr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ int ZEXPORT uncompress (Byte *dest, uLong *destLen, const Byte *source, uLong so z_stream stream; int err; - stream.next_in = (z_const Byte *)source; + stream.next_in = (const Byte *)source; stream.avail_in = (uInt)sourceLen; stream.next_out = dest; stream.avail_out = (uInt)*destLen; |