diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 12:22:53 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 12:22:53 +0000 |
commit | e866a459925e7bd450f667faec6a33367afc901c (patch) | |
tree | 07ed91cd6e33cc01eec566d90250db3d07055241 | |
parent | d89732891fafab9f82e83f17f2a0d6d9b9952ba5 (diff) |
reindent
-rw-r--r-- | usr.bin/make/direxpand.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/make/direxpand.c b/usr.bin/make/direxpand.c index 78c3f25c2c0..2a6eb4fd0d0 100644 --- a/usr.bin/make/direxpand.c +++ b/usr.bin/make/direxpand.c @@ -1,4 +1,4 @@ -/* $OpenBSD: direxpand.c,v 1.3 2007/09/17 09:28:36 espie Exp $ */ +/* $OpenBSD: direxpand.c,v 1.4 2007/09/17 12:22:52 espie Exp $ */ /* * Copyright (c) 1999,2007 Marc Espie. * @@ -95,7 +95,8 @@ PathMatchFilesi(const char *word, const char *eword, Lst path, Lst expansions) LstNode ln; /* Current node */ for (ln = Lst_First(path); ln != NULL; ln = Lst_Adv(ln)) - Dir_MatchFilesi(word, eword, (struct PathEntry *)Lst_Datum(ln), expansions); + Dir_MatchFilesi(word, eword, (struct PathEntry *)Lst_Datum(ln), + expansions); } /*- @@ -112,8 +113,8 @@ PathMatchFilesi(const char *word, const char *eword, Lst path, Lst expansions) static void DirExpandWildi(const char *word, const char *eword, Lst path, Lst expansions) { - const char *cp; - const char *slash; /* keep track of first slash before wildcard */ + const char *cp; + const char *slash; /* keep track of first slash before wildcard */ slash = memchr(word, '/', eword - word); if (slash == NULL) { |