diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-08-21 02:19:50 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-08-21 02:19:50 +0000 |
commit | ed9ccf48bb40023e1f0730937cc30738b094e85b (patch) | |
tree | a7166334c7bad3a4a5fefeb2d691c70d7b29d435 /usr.bin/make/make.c | |
parent | b6541c8fb2bf7a1d6480b19e3db8264680805b17 (diff) |
correctly indent a line to make the intent clear
ok espie@
Diffstat (limited to 'usr.bin/make/make.c')
-rw-r--r-- | usr.bin/make/make.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c index de4ee8ac2eb..037ca27de01 100644 --- a/usr.bin/make/make.c +++ b/usr.bin/make/make.c @@ -1,4 +1,4 @@ -/* $OpenBSD: make.c,v 1.69 2015/01/23 13:18:40 espie Exp $ */ +/* $OpenBSD: make.c,v 1.70 2015/08/21 02:19:49 jsg Exp $ */ /* $NetBSD: make.c,v 1.10 1996/11/06 17:59:15 christos Exp $ */ /* @@ -317,7 +317,7 @@ try_to_make_node(GNode *gn) if (has_been_built(gn)) { if (DEBUG(MAKE)) printf(" already made\n"); - return false; + return false; } if (has_unmade_predecessor(gn)) { if (DEBUG(MAKE)) |