From: ceriel Date: Tue, 18 Apr 1995 13:56:20 +0000 (+0000) Subject: Fix: had a semicolon too much (KJB) X-Git-Tag: release-5-5~121 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=5edfb9eccfdbbeccb5c7afb66249ac4230a90233;p=ack.git Fix: had a semicolon too much (KJB) --- diff --git a/lang/cem/libcc.ansi/stdio/doscan.c b/lang/cem/libcc.ansi/stdio/doscan.c index 1b41a3d6a..770f1eae4 100644 --- a/lang/cem/libcc.ansi/stdio/doscan.c +++ b/lang/cem/libcc.ansi/stdio/doscan.c @@ -50,7 +50,7 @@ o_collect(register int c, register FILE *stream, char type, if (c == '-' || c == '+') { *bufp++ = c; - if (--width); + if (--width) c = getc(stream); }