Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion strings/ctype.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ scan_one_character(const char *s, const char *e, my_wc_t *wc)
wc[0]= 0;
return len;
}
else if (s[0] > 0) /* 7-bit character */
else if ((int8) s[0] > 0) /* 7-bit character */
{
wc[0]= 0;
return 1;
Expand Down