Some more linter warnings
This commit is contained in:
parent
b729853e7a
commit
aca6d79087
4 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue