Explorar el Código

Fix: had a semicolon too much (KJB)

ceriel hace 29 años
padre
commit
5edfb9eccf
Se han modificado 1 ficheros con 1 adiciones y 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);
 	}