Cast size_t to long to silence warning
This commit is contained in:
parent
c29e30d25c
commit
35172597d4
1 changed files with 1 additions and 1 deletions
2
misc.c
2
misc.c
|
@ -898,7 +898,7 @@ long I, VAL;
|
|||
IGNORE(fputs(rawbuf, stdout));
|
||||
strcpy(INLINE+1, rawbuf);
|
||||
LNLENG=0;
|
||||
for (I=1; I<=sizeof(INLINE) && INLINE[I]!=0; I++) {
|
||||
for (I=1; I<=(long)sizeof(INLINE) && INLINE[I]!=0; I++) {
|
||||
VAL=INLINE[I]+1;
|
||||
INLINE[I]=MAP1[VAL];
|
||||
if(INLINE[I] != 0)LNLENG=I;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue