aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/arch.c
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2004-12-07 10:14:16 +0000
committerHartmut Brandt <harti@FreeBSD.org>2004-12-07 10:14:16 +0000
commit644a6874f9ad1e792ff3550ba4ec509c2ca957af (patch)
treedc544ee893c2b95a0e4d64009cb9fe98b5598e7c /usr.bin/make/arch.c
parent20a92a18f1fb48db2bb6fcb4c03501b5ca3c3b5e (diff)
Notes
Diffstat (limited to 'usr.bin/make/arch.c')
-rw-r--r--usr.bin/make/arch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c
index 4029dce5386d7..8795feb66f1db 100644
--- a/usr.bin/make/arch.c
+++ b/usr.bin/make/arch.c
@@ -336,7 +336,7 @@ Arch_ParseArchive(char **linePtr, Lst nodeLst, GNode *ctxt)
*/
free(buf);
} else if (Dir_HasWildcards(memName)) {
- Lst members = Lst_Init(FALSE);
+ Lst members = Lst_Init();
char *member;
size_t sz = MAXPATHLEN;
size_t nsz;
@@ -1193,7 +1193,7 @@ void
Arch_Init(void)
{
- archives = Lst_Init(FALSE);
+ archives = Lst_Init();
}
/*-