diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-10-27 08:44:13 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-10-27 08:44:13 +0000 |
commit | bed4d5d4dfbe448e0b3b5c3c1f67fbb7ee1b6f92 (patch) | |
tree | 0959c0733bf065285d7a1fce5f6aab7a72e9d72a /usr.bin/make | |
parent | f8621b1d02e579bcbeb23fcc55e6c20433c115e0 (diff) |
fix indentation
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/compat.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c index d0fafa60d0c..bd5c6d841a1 100644 --- a/usr.bin/make/compat.c +++ b/usr.bin/make/compat.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: compat.c,v 1.61 2007/10/14 09:02:10 espie Exp $ */ +/* $OpenBSD: compat.c,v 1.62 2007/10/27 08:44:12 espie Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* @@ -403,12 +403,12 @@ CompatMake(void *gnp, /* The node to make */ gn->type |= OP_SILENT; if (Job_CheckCommands(gn, Fatal)) { - /* Our commands are ok, but we still have to worry - * about the -t flag... */ - if (!touchFlag) - run_gnode(gn); - else - Job_Touch(gn, gn->type & OP_SILENT); + /* Our commands are ok, but we still have to worry + * about the -t flag... */ + if (!touchFlag) + run_gnode(gn); + else + Job_Touch(gn, gn->type & OP_SILENT); } else gn->made = ERROR; |