summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-07-09 12:29:46 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-07-09 12:29:46 +0000
commit1c58660c225bea2f909bf3c2a289ed6c238e069e (patch)
tree1b4388abbcf0151997a12a5bc0aa19b733da8e0a /usr.bin
parent9767e6e29faf1d116c1e2ec0eba2ad801827cbdd (diff)
indent correctly
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/varname.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/varname.c b/usr.bin/make/varname.c
index e2f493496af..edcc7ed979a 100644
--- a/usr.bin/make/varname.c
+++ b/usr.bin/make/varname.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: varname.c,v 1.2 2004/04/07 13:11:36 espie Exp $ */
+/* $OpenBSD: varname.c,v 1.3 2007/07/09 12:29:45 espie Exp $ */
/*
* Copyright (c) 2001 Marc Espie.
*
@@ -42,7 +42,7 @@ VarName_Get(const char *start, struct Name *name, SymTable *ctxt, bool err, cons
/* If we don't want recursive variables, we skip over '$' */
if (!FEATURES(FEATURE_RECVARS)) {
while (*p == '$')
- p = cont(p);
+ p = cont(p);
}
if (*p != '$') {
name->s = start;