diff options
| author | pk <pk@NetBSD.org> | 2002-03-21 11:42:21 +0000 |
|---|---|---|
| committer | pk <pk@NetBSD.org> | 2002-03-21 11:42:21 +0000 |
| commit | 53dab8cf3b88c4bcdf46a2affa4ffacacc4db274 (patch) | |
| tree | c7cc3f2bfe85ea693bbd7174bf6ab85915daa138 /usr.bin/make/make.c | |
| parent | 971b06b9796e3058e0819966351527b264e7980a (diff) | |
Darn.. remove test code from previous commit.
Diffstat (limited to 'usr.bin/make/make.c')
| -rw-r--r-- | usr.bin/make/make.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c index 0fcf2c85765..52d7a570860 100644 --- a/usr.bin/make/make.c +++ b/usr.bin/make/make.c @@ -1,4 +1,4 @@ -/* $NetBSD: make.c,v 1.48 2002/03/21 11:34:17 pk Exp $ */ +/* $NetBSD: make.c,v 1.49 2002/03/21 11:42:21 pk Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -39,14 +39,14 @@ */ #ifdef MAKE_BOOTSTRAP -static char rcsid[] = "$NetBSD: make.c,v 1.48 2002/03/21 11:34:17 pk Exp $"; +static char rcsid[] = "$NetBSD: make.c,v 1.49 2002/03/21 11:42:21 pk Exp $"; #else #include <sys/cdefs.h> #ifndef lint #if 0 static char sccsid[] = "@(#)make.c 8.1 (Berkeley) 6/6/93"; #else -__RCSID("$NetBSD: make.c,v 1.48 2002/03/21 11:34:17 pk Exp $"); +__RCSID("$NetBSD: make.c,v 1.49 2002/03/21 11:42:21 pk Exp $"); #endif #endif /* not lint */ #endif @@ -884,9 +884,8 @@ MakeStartJobs () { GNode *gn; -extern ClientData Lst_DeQueue_Last (Lst); while (!Lst_IsEmpty (toBeMade)) { - gn = (GNode *) Lst_DeQueue_Last (toBeMade); + gn = (GNode *) Lst_DeQueue (toBeMade); if (DEBUG(MAKE)) { printf ("Examining %s...", gn->name); } |
