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 /gzwrite.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 'gzwrite.c')
-rw-r--r-- | gzwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -223,7 +223,7 @@ int ZEXPORT gzwrite(gzFile file, void const *buf, unsigned len) /* directly compress user buffer to file */ strm->avail_in = len; - strm->next_in = (z_const Byte *)buf; + strm->next_in = (const Byte *)buf; state->x.pos += len; if (gz_comp(state, Z_NO_FLUSH) == -1) return 0; |