From 5edfb9eccfdbbeccb5c7afb66249ac4230a90233 Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 18 Apr 1995 13:56:20 +0000 Subject: [PATCH] Fix: had a semicolon too much (KJB) --- lang/cem/libcc.ansi/stdio/doscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.34.1