summaryrefslogtreecommitdiff
path: root/zconf.h.in
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2013-04-13 15:54:03 -0700
committerMark Adler <madler@alumni.caltech.edu>2013-04-13 15:54:03 -0700
commit5d33c62c7d7d053a1d55b92c1036e196ed1168bd (patch)
treee78bbc7998161b8056ecccf64900ec41c764e95e /zconf.h.in
parent8a93f49c86044934de225a395d3b5b851879257c (diff)
downloadzlib-5d33c62c7d7d053a1d55b92c1036e196ed1168bd.tar.gz
Change check for a four-byte type back to hexadecimal.
Diffstat (limited to 'zconf.h.in')
-rw-r--r--zconf.h.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/zconf.h.in b/zconf.h.in
index 80de2ce..7a9d8f2 100644
--- a/zconf.h.in
+++ b/zconf.h.in
@@ -393,11 +393,11 @@ typedef uLong FAR uLongf;
#if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC)
# include <limits.h>
-# 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