summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-09-17 12:19:12 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-09-17 12:19:12 +0000
commitd89732891fafab9f82e83f17f2a0d6d9b9952ba5 (patch)
treede930ad92ac48cee6600a42cfd0698705c59b1c4 /usr.bin
parentae30de3edc12ebdcdfa21f6f2639fade472c44de (diff)
fix indent
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/engine.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/engine.c b/usr.bin/make/engine.c
index 1382756c5a1..960b7b2bc3b 100644
--- a/usr.bin/make/engine.c
+++ b/usr.bin/make/engine.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: engine.c,v 1.7 2007/09/17 12:10:35 espie Exp $ */
+/* $OpenBSD: engine.c,v 1.8 2007/09/17 12:19:11 espie Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
* Copyright (c) 1988, 1989 by Adam de Boor
@@ -208,8 +208,8 @@ Job_Touch(GNode *gn, bool silent)
void
Make_TimeStamp(GNode *parent, GNode *child)
{
- if (is_strictly_before(parent->cmtime, child->mtime))
- parent->cmtime = child->mtime;
+ if (is_strictly_before(parent->cmtime, child->mtime))
+ parent->cmtime = child->mtime;
}
/*-