Use unsigned int instead of uint32_t in crypt.h for max compat. #897

This commit is contained in:
Nathan Moinvaziri
2025-07-25 18:54:22 -07:00
parent 636cba8643
commit d214437dd8

View File

@@ -27,7 +27,7 @@
#ifndef ZLIB_VERNUM
/* No zlib */
typedef uint32_t z_crc_t;
typedef unsigned int z_crc_t;
#elif (ZLIB_VERNUM & 0xf != 0xf) && (ZLIB_VERNUM < 0x1270)
/* Define z_crc_t in zlib 1.2.6 and less */
typedef unsigned long z_crc_t;