diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2018-09-20 11:41:29 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2018-09-20 11:41:29 +0000 |
commit | d1eea0fa282a0fee121e09f4a080a694335f7e31 (patch) | |
tree | 70e834e01ff89497ad234cace4238228f1544fb7 /usr.bin/make | |
parent | bf2b99c48277ca46238cd28bfe9892f94337116b (diff) |
fix indentation
ok krw@ millert@
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index ea3660aa47e..aba0d2e64c6 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.c,v 1.120 2017/12/19 20:44:53 zhuk Exp $ */ +/* $OpenBSD: parse.c,v 1.121 2018/09/20 11:41:28 jsg Exp $ */ /* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */ /* @@ -1381,7 +1381,7 @@ handle_bsd_command(Buffer linebuf, Buffer copy, const char *line) if (line != NULL) { while (ISSPACE(*line)) line++; - stripped = strip_comments(copy, line); + stripped = strip_comments(copy, line); } } while (line != NULL && Cond_Eval(stripped) != COND_PARSE); /* FALLTHROUGH */ |