From 81abbb8d3ba808d5ac87dc3c087881482beb88b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Fri, 9 Jul 2021 18:11:20 +0200 Subject: Process first character of line too --- build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.c b/build.c index b98ac6b..6db1aed 100644 --- a/build.c +++ b/build.c @@ -82,7 +82,7 @@ main(int argc, char *argv[]) /* parse line */ b = buf; - for (b++; *b; b++) { + for (; *b; b++) { /* command line */ if (strncmp(b, " $ ", 3) == 0 || strncmp(b, " $ ", 3) == 0) { -- cgit v1.2.3