From: Rich Felker Date: Wed, 17 Dec 2014 21:52:37 +0000 (-0500) Subject: fix signedness of WINT_MIN expression X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=aee9b1526247f74e9b755b50e102b3b4ce2aac1d;p=android-x86%2Fexternal-musl-libc.git fix signedness of WINT_MIN expression since wint_t is unsigned, WINT_MIN needs to expand to an unsigned zero. --- diff --git a/include/stdint.h b/include/stdint.h index ad6aaead..518d05b9 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -78,7 +78,7 @@ typedef uint64_t uint_least64_t; #define INTMAX_MAX INT64_MAX #define UINTMAX_MAX UINT64_MAX -#define WINT_MIN 0 +#define WINT_MIN 0U #define WINT_MAX UINT32_MAX #if L'\0'-1 > 0