diff options
| author | Hartmut Brandt <harti@FreeBSD.org> | 2004-12-07 13:49:13 +0000 |
|---|---|---|
| committer | Hartmut Brandt <harti@FreeBSD.org> | 2004-12-07 13:49:13 +0000 |
| commit | bf1ead06083208b33eb36ed779e5ece8bcb681b9 (patch) | |
| tree | 56920a7ef5b24bec1022ce1711332864a400679e /usr.bin/make/lst.lib/lstDeQueue.c | |
| parent | b82f920f8e385ddce2851c04b3dd314183b13612 (diff) | |
Notes
Diffstat (limited to 'usr.bin/make/lst.lib/lstDeQueue.c')
| -rw-r--r-- | usr.bin/make/lst.lib/lstDeQueue.c | 6 |
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) { |
