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 /infback.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 'infback.c')
-rw-r--r-- | infback.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -238,7 +238,7 @@ int ZEXPORT inflateBack(z_stream *strm, in_func in, void *in_desc, out_func out, void *out_desc) { struct inflate_state *state; - z_const unsigned char *next; /* next input */ + const unsigned char *next; /* next input */ unsigned char *put; /* next output */ unsigned have, left; /* available input and output */ unsigned long hold; /* bit buffer */ |