fix signedness errors in stdint.h constant macros
authorRich Felker <dalias@aerifal.cx>
Fri, 8 Jun 2012 15:11:44 +0000 (11:11 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 8 Jun 2012 15:11:44 +0000 (11:11 -0400)
the types of these expressions must match the integer promotions.
unsigned 8- and 16-bit values promote to signed int, not unsigned int.

include/stdint.h

index 5400667..7ca9d76 100644 (file)
@@ -90,8 +90,8 @@ typedef unsigned long long uintmax_t;
 #define INT32_C(c) c
 #define INT64_C(c) c ## LL
 
-#define UINT8_C(c)  c ## U
-#define UINT16_C(c) c ## U
+#define UINT8_C(c)  c
+#define UINT16_C(c) c
 #define UINT32_C(c) c ## U
 #define UINT64_C(c) c ## ULL