Fix uchar cast.
This commit is contained in:
parent
3bd56b04a8
commit
438503b4c3
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ scanform(long icount, int prt, char *ifp, Map *map, int literal)
|
||||||
fcount = 1;
|
fcount = 1;
|
||||||
else {
|
else {
|
||||||
fcount = 0;
|
fcount = 0;
|
||||||
while (isdigit((uchar)c = *fp++)) {
|
while (isdigit((uchar)(c = *fp++))) {
|
||||||
fcount *= 10;
|
fcount *= 10;
|
||||||
fcount += c-'0';
|
fcount += c-'0';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue