diff options
Diffstat (limited to 'sysdeps/generic/strtol.c')
-rw-r--r-- | sysdeps/generic/strtol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/generic/strtol.c b/sysdeps/generic/strtol.c index 28806083cf..1b267753d9 100644 --- a/sysdeps/generic/strtol.c +++ b/sysdeps/generic/strtol.c @@ -361,9 +361,9 @@ INTERNAL (strtol) (nptr, endptr, base, group LOCALE_PARAM) ) { for (c = *end; c != L_('\0'); c = *++end) - if (((wchar_t) c < L_('0') || (wchar_t) c > L_('9')) + if (((STRING_TYPE) c < L_('0') || (STRING_TYPE) c > L_('9')) # ifdef USE_WIDE_CHAR - && c != thousands + && (wchar_t) c != thousands # else && ({ for (cnt = 0; cnt < thousands_len; ++cnt) if (thousands[cnt] != end[cnt]) @@ -400,7 +400,7 @@ INTERNAL (strtol) (nptr, endptr, base, group LOCALE_PARAM) c -= L_('0'); #ifdef USE_NUMBER_GROUPING # ifdef USE_WIDE_CHAR - else if (grouping && c == thousands) + else if (grouping && (wchar_t) c == thousands) continue; # else else if (thousands_len) @@ -448,7 +448,7 @@ INTERNAL (strtol) (nptr, endptr, base, group LOCALE_PARAM) c -= L_('0'); #ifdef USE_NUMBER_GROUPING # ifdef USE_WIDE_CHAR - else if (grouping && c == thousands) + else if (grouping && (wchar_t) c == thousands) continue; # else else if (thousands_len) |