From 5d33c62c7d7d053a1d55b92c1036e196ed1168bd Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sat, 13 Apr 2013 15:54:03 -0700 Subject: Change check for a four-byte type back to hexadecimal. --- zconf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'zconf.h') diff --git a/zconf.h b/zconf.h index 80de2ce..7a9d8f2 100644 --- a/zconf.h +++ b/zconf.h @@ -393,11 +393,11 @@ typedef uLong FAR uLongf; #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) # include -# if (UINT_MAX == 4294967295) +# if (UINT_MAX == 0xffffffffUL) # define Z_U4 unsigned -# elif (ULONG_MAX == 4294967295) +# elif (ULONG_MAX == 0xffffffffUL) # define Z_U4 unsigned long -# elif (USHRT_MAX == 4294967295) +# elif (USHRT_MAX == 0xffffffffUL) # define Z_U4 unsigned short # endif #endif -- cgit v1.2.1