summaryrefslogtreecommitdiff
path: root/arch/i386
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-15 19:15:45 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-15 19:15:45 -0500
commitf451462098deada2fc30831a28719456e7d474a7 (patch)
treee6ca000407f1d0f4abf3dd937b6ffc7e96ab723a /arch/i386
parent6d36c2098be0b431cad5c8f8327f1beb943028b0 (diff)
downloadmusl-f451462098deada2fc30831a28719456e7d474a7.tar.gz
fix the types of some integer constant limits in headers
Diffstat (limited to 'arch/i386')
-rw-r--r--arch/i386/bits/limits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/bits/limits.h b/arch/i386/bits/limits.h
index f5778579..4e992453 100644
--- a/arch/i386/bits/limits.h
+++ b/arch/i386/bits/limits.h
@@ -22,11 +22,11 @@
#define INT_MIN (-1-0x7fffffff)
#define INT_MAX 0x7fffffff
-#define UINT_MAX 0xffffffff
+#define UINT_MAX 0xffffffffU
#define LONG_MIN (-1-0x7fffffffL)
#define LONG_MAX 0x7fffffffL
-#define ULONG_MAX 0xffffffffL
+#define ULONG_MAX 0xffffffffUL
#define LLONG_MIN (-1-0x7fffffffffffffffLL)
#define LLONG_MAX 0x7fffffffffffffffLL