Ver código fonte

Fix: had a semicolon too much (KJB)

ceriel 29 anos atrás
pai
commit
5edfb9eccf
1 arquivos alterados com 1 adições e 1 exclusões
  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);
 	}