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);
|
putc(c-128, tempfile);
|
||||||
v = yylval.y_valu;
|
v = yylval.y_valu;
|
||||||
while (--n >= 0)
|
while (--n >= 0)
|
||||||
putc(v >> (n*8), tempfile);
|
putc((int) (v >> (n*8)), tempfile);
|
||||||
return;
|
return;
|
||||||
case IDENT:
|
case IDENT:
|
||||||
case FBSYM:
|
case FBSYM:
|
||||||
|
|
Loading…
Add table
Reference in a new issue