aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/lst.lib/lstDeQueue.c
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2004-12-07 13:49:13 +0000
committerHartmut Brandt <harti@FreeBSD.org>2004-12-07 13:49:13 +0000
commitbf1ead06083208b33eb36ed779e5ece8bcb681b9 (patch)
tree56920a7ef5b24bec1022ce1711332864a400679e /usr.bin/make/lst.lib/lstDeQueue.c
parentb82f920f8e385ddce2851c04b3dd314183b13612 (diff)
Notes
Diffstat (limited to 'usr.bin/make/lst.lib/lstDeQueue.c')
-rw-r--r--usr.bin/make/lst.lib/lstDeQueue.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/lst.lib/lstDeQueue.c b/usr.bin/make/lst.lib/lstDeQueue.c
index 86a57de6b9f1..2e3bf839facf 100644
--- a/usr.bin/make/lst.lib/lstDeQueue.c
+++ b/usr.bin/make/lst.lib/lstDeQueue.c
@@ -64,10 +64,10 @@ __FBSDID("$FreeBSD$");
*-----------------------------------------------------------------------
*/
void *
-Lst_DeQueue(Lst l)
+Lst_DeQueue(Lst *l)
{
- void * rd;
- LstNode tln;
+ void *rd;
+ LstNode *tln;
tln = Lst_First(l);
if (tln == NULL) {