diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-12-17 16:52:37 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-03-30 01:41:33 -0400 |
commit | 2c61720d971b403dfd1e500d6efdfeaf54eb411a (patch) | |
tree | 3d43ec39c7a4eba539831ca2bdb9b1117aa6ce9a /include/stdint.h | |
parent | 0d418ce688da6bc80073539f372be84faf7139d1 (diff) | |
download | musl-2c61720d971b403dfd1e500d6efdfeaf54eb411a.tar.gz musl-2c61720d971b403dfd1e500d6efdfeaf54eb411a.tar.bz2 musl-2c61720d971b403dfd1e500d6efdfeaf54eb411a.tar.xz musl-2c61720d971b403dfd1e500d6efdfeaf54eb411a.zip |
fix signedness of WINT_MIN expression
since wint_t is unsigned, WINT_MIN needs to expand to an unsigned zero.
(cherry picked from commit aee9b1526247f74e9b755b50e102b3b4ce2aac1d)
Diffstat (limited to 'include/stdint.h')
-rw-r--r-- | include/stdint.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |