From: ceriel Date: Tue, 1 Sep 1987 18:31:42 +0000 (+0000) Subject: first arg to putc must be int or char, not long X-Git-Tag: release-5-5~3854 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a1ae33624780298aaede9eff8edbb671bf994391;p=ack.git first arg to putc must be int or char, not long --- diff --git a/mach/proto/as/comm5.c b/mach/proto/as/comm5.c index d9bf59aa3..60b65f6c9 100644 --- a/mach/proto/as/comm5.c +++ b/mach/proto/as/comm5.c @@ -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: