Some more linter warnings

This commit is contained in:
NHOrus 2017-06-28 20:40:46 +03:00 committed by Eric S. Raymond
parent b729853e7a
commit aca6d79087
4 changed files with 5 additions and 5 deletions

View file

@ -159,7 +159,7 @@ static long GETNUM(FILE *source)
* scanned). If we're at the end of the line or encounter an illegal
* character (not a digit, hyphen, or blank), we return 0. */
long DIGIT, GETNUM, sign;
long GETNUM, sign;
if (source != NULL) MAPLIN(source);
GETNUM = 0;
@ -176,7 +176,7 @@ static long GETNUM(FILE *source)
LNPOSN = LNPOSN + 1;
}
while (!(LNPOSN > LNLENG || INLINE[LNPOSN] == 0)) {
DIGIT = INLINE[LNPOSN] - 64;
long DIGIT = INLINE[LNPOSN] - 64;
if (DIGIT < 0 || DIGIT > 9) {
GETNUM = 0;
break;