first arg to putc must be int or char, not long
This commit is contained in:
parent
f00c143b28
commit
a1ae336247
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ putval(c)
|
|||
putc(c-128, tempfile);
|
||||
v = yylval.y_valu;
|
||||
while (--n >= 0)
|
||||
putc(v >> (n*8), tempfile);
|
||||
putc((int) (v >> (n*8)), tempfile);
|
||||
return;
|
||||
case IDENT:
|
||||
case FBSYM:
|
||||
|
|
Loading…
Reference in a new issue