first arg to putc must be int or char, not long

This commit is contained in:
ceriel 1987-09-01 18:31:42 +00:00
parent f00c143b28
commit a1ae336247

View file

@ -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: