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 b1748d4cff
commit e0a1824870

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: