While I am here, add more missing (unsigned char) casts to ctype() macros

This commit is contained in:
Andrey A. Chernov 2010-05-06 16:54:46 +00:00
parent 7024db1d40
commit e86a8937dc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=207703
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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);