While I am here, add more missing (unsigned char) casts to ctype() macros
This commit is contained in:
parent
7024db1d40
commit
e86a8937dc
@ -163,7 +163,7 @@ cal(void)
|
||||
continue;
|
||||
|
||||
/* Trim spaces in front of the tab */
|
||||
while (isspace(pp[-1]))
|
||||
while (isspace((unsigned char)pp[-1]))
|
||||
pp--;
|
||||
|
||||
p = *pp;
|
||||
|
@ -872,7 +872,7 @@ isonlydigits(char *s, int nostar)
|
||||
for (i = 0; s[i] != '\0'; i++) {
|
||||
if (nostar == 0 && s[i] == '*' && s[i + 1] == '\0')
|
||||
return 1;
|
||||
if (!isdigit(s[i]))
|
||||
if (!isdigit((unsigned char)s[i]))
|
||||
return (0);
|
||||
}
|
||||
return (1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user