Browse Source

Fix: had a semicolon too much (KJB)

ceriel 29 years ago
parent
commit
661464ed0f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lang/cem/libcc.ansi/stdio/doscan.c

+ 1 - 1
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);
 	}