mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix signedness of WINT_MIN expression
since wint_t is unsigned, WINT_MIN needs to expand to an unsigned zero.
This commit is contained in:
parent
a9c2294eef
commit
aee9b15262
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue