aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/last.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-05-23 04:14:46 -0500
committerRob Landley <rob@landley.net>2014-05-23 04:14:46 -0500
commita76175cbdaf4878491deadd68860b07c8d4846ff (patch)
treec542f364737645e22b304b74ce96de769b04e611 /toys/pending/last.c
parent0369ba56ef4f4c14c62ee6bf77bddd444862398a (diff)
downloadtoybox-a76175cbdaf4878491deadd68860b07c8d4846ff.tar.gz
Ashwini Sharma pointed out I screwed up last.c.
Renamed the function, missed a user...
Diffstat (limited to 'toys/pending/last.c')
-rw-r--r--toys/pending/last.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/last.c b/toys/pending/last.c
index 223082f2..b207afef 100644
--- a/toys/pending/last.c
+++ b/toys/pending/last.c
@@ -36,7 +36,7 @@ GLOBALS(
static void free_list()
{
if (TT.list) {
- llist_traverse(TT.list, free_arg_list);
+ llist_traverse(TT.list, llist_free_arg);
TT.list = NULL;
}
}