From 3d649468c7315d43aa99a44e882118d6872cb6ec Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 8 Jun 2012 11:11:44 -0400 Subject: fix signedness errors in stdint.h constant macros 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/stdint.h') diff --git a/include/stdint.h b/include/stdint.h index 54006678..7ca9d76b 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -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 -- cgit v1.2.1