diff options
-rw-r--r-- | build.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -78,8 +78,7 @@ main(int argc, char *argv[]) /* Read line by line, at most twenty. */ for (j = 0; j < 20 && fgets(buf, MAXBUF, fp); j++) { buf[strcspn(buf, "\n")] = 0; - b = buf; - for (; *b; b++) { + for (b = buf; *b; b++) { /* Find command line. */ if (strncmp(b, " $ ", 3) == 0 |