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 /crc32.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 'crc32.c')
-rw-r--r-- | crc32.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -416,10 +416,10 @@ uint32_t ZEXPORT crc32_combine64(uint32_t crc1, uint32_t crc2, z_off64_t len2) #ifdef X86_PCLMULQDQ_CRC #include "arch/x86/x86.h" -extern void ZLIB_INTERNAL crc_fold_init(deflate_state *z_const s); -extern void ZLIB_INTERNAL crc_fold_copy(deflate_state *z_const s, - unsigned char *dst, z_const unsigned char *src, long len); -extern uint32_t ZLIB_INTERNAL crc_fold_512to32(deflate_state *z_const s); +extern void ZLIB_INTERNAL crc_fold_init(deflate_state *const s); +extern void ZLIB_INTERNAL crc_fold_copy(deflate_state *const s, + unsigned char *dst, const unsigned char *src, long len); +extern uint32_t ZLIB_INTERNAL crc_fold_512to32(deflate_state *const s); #endif ZLIB_INTERNAL void crc_reset(deflate_state *const s) |