Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
EdSchouten committed Dec 5, 2017
1 parent 316605a commit fe42774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libc/stdint/stdint_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static_assert(SIZE_MAX >= 0xffff, "Limit too low");

static_assert((wchar_t)-1 < 0 ? WCHAR_MIN <= -0x7f : WCHAR_MIN == 0,
"Limit too low");
static_assert((wchar_t)-1 < 0 ? WCHAR_MAX >= 0x7f : WCHAR_MIN >= 0xff,
static_assert((wchar_t)-1 < 0 ? WCHAR_MAX >= 0x7f : WCHAR_MAX >= 0xff,
"Limit too low");

static_assert((wint_t)-1 < 0 ? WINT_MIN <= -0x7fff : WINT_MIN == 0,
Expand Down

0 comments on commit fe42774

Please sign in to comment.