OSDN Git Service

Ashwini Sharma pointed out I screwed up last.c.
authorRob Landley <rob@landley.net>
Fri, 23 May 2014 09:14:46 +0000 (04:14 -0500)
committerRob Landley <rob@landley.net>
Fri, 23 May 2014 09:14:46 +0000 (04:14 -0500)
Renamed the function, missed a user...

toys/pending/last.c

index 223082f..b207afe 100644 (file)
@@ -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;
   }
 }