summaryrefslogtreecommitdiff
path: root/usr.bin/make/make.c
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2020-11-08 08:53:22 +0000
committerrillig <rillig@NetBSD.org>2020-11-08 08:53:22 +0000
commitb4f9e99580d328c44ef6df876ab94a192ccdf89f (patch)
treeb3ebfc34a3cf5b1c5931e4dc6a0cb98829bd41ab /usr.bin/make/make.c
parent400a44e5bf3ddb6a0f241d73c362eff5ededd179 (diff)
make(1): use common indentation style for else
Diffstat (limited to 'usr.bin/make/make.c')
-rw-r--r--usr.bin/make/make.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c
index f06dc5a5fd8..ed63ec8c115 100644
--- a/usr.bin/make/make.c
+++ b/usr.bin/make/make.c
@@ -1,4 +1,4 @@
-/* $NetBSD: make.c,v 1.190 2020/11/08 08:33:07 rillig Exp $ */
+/* $NetBSD: make.c,v 1.191 2020/11/08 08:53:22 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -108,7 +108,7 @@
#include "job.h"
/* "@(#)make.c 8.1 (Berkeley) 6/6/93" */
-MAKE_RCSID("$NetBSD: make.c,v 1.190 2020/11/08 08:33:07 rillig Exp $");
+MAKE_RCSID("$NetBSD: make.c,v 1.191 2020/11/08 08:53:22 rillig Exp $");
/* Sequence # to detect recursion. */
static unsigned int checked = 1;
@@ -550,8 +550,7 @@ Make_Recheck(GNode *gn)
DEBUG2(MAKE, " recheck(%s): update time from %s to now\n",
gn->name, Targ_FmtTime(gn->mtime));
gn->mtime = now;
- }
- else {
+ } else {
DEBUG2(MAKE, " recheck(%s): current update time: %s\n",
gn->name, Targ_FmtTime(gn->mtime));
}