diff options
Diffstat (limited to 'usr.bin/make/lst.lib/lstDeQueue.c')
-rw-r--r-- | usr.bin/make/lst.lib/lstDeQueue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/lst.lib/lstDeQueue.c b/usr.bin/make/lst.lib/lstDeQueue.c index 7cfb476..86a57de 100644 --- a/usr.bin/make/lst.lib/lstDeQueue.c +++ b/usr.bin/make/lst.lib/lstDeQueue.c @@ -69,13 +69,13 @@ Lst_DeQueue(Lst l) void * rd; LstNode tln; - tln = Lst_First (l); + tln = Lst_First(l); if (tln == NULL) { return (NULL); } rd = tln->datum; - if (Lst_Remove (l, tln) == FAILURE) { + if (Lst_Remove(l, tln) == FAILURE) { return (NULL); } else { return (rd); |