Explorar o código

Fix: had a semicolon too much (KJB)

ceriel %!s(int64=29) %!d(string=hai) anos
pai
achega
5edfb9eccf
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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);
 	}