diff options
author | Mika Lindqvist <postmaster@raasu.org> | 2017-02-13 18:17:37 +0200 |
---|---|---|
committer | Mika Lindqvist <postmaster@raasu.org> | 2017-02-13 18:17:37 +0200 |
commit | 15ae16292c4c5a241ab5cc4ef458aed05d82e4cf (patch) | |
tree | 3f20a4adcb18ecc33dcd5cb66ae260c5c7505d63 /crc32.c | |
parent | 463834a82ebd26e394b1c3b9607d0b3ac939655b (diff) |
Replace remaining Z_NULL instances with NULL.
Diffstat (limited to 'crc32.c')
-rw-r--r-- | crc32.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -442,7 +442,7 @@ uint32_t ZEXPORT crc32_combine64(uint32_t crc1, uint32_t crc2, z_off64_t len2) { #ifndef X86_PCLMULQDQ_CRC ZLIB_INTERNAL void crc_reset(deflate_state *const s) { - s->strm->adler = crc32(0L, Z_NULL, 0); + s->strm->adler = crc32(0L, NULL, 0); } ZLIB_INTERNAL void copy_with_crc(z_stream *strm, unsigned char *dst, unsigned long size) { |