diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-16 12:19:16 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-16 12:19:16 +0000 |
commit | a8f993b70bc433fd49ed27b5e6ecd3847a5c0f34 (patch) | |
tree | 91986108c0dd6eae39634b7d93e3bfad0eb50c11 /usr.bin/make/direxpand.c | |
parent | 001b9f723b0b77e321ccd722bdecfd73e696f564 (diff) |
rename Path to less misleading PathEntry. Get rid of typedef.
Diffstat (limited to 'usr.bin/make/direxpand.c')
-rw-r--r-- | usr.bin/make/direxpand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/direxpand.c b/usr.bin/make/direxpand.c index a81cc84f716..8746e39a7df 100644 --- a/usr.bin/make/direxpand.c +++ b/usr.bin/make/direxpand.c @@ -1,4 +1,4 @@ -/* $OpenBSD: direxpand.c,v 1.1 2007/09/16 10:14:26 espie Exp $ */ +/* $OpenBSD: direxpand.c,v 1.2 2007/09/16 12:19:15 espie Exp $ */ /* * Copyright (c) 1999,2007 Marc Espie. * @@ -95,7 +95,7 @@ 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 Path_ *)Lst_Datum(ln), expansions); + Dir_MatchFilesi(word, eword, (struct PathEntry *)Lst_Datum(ln), expansions); } /*- |