aboutsummaryrefslogtreecommitdiff
path: root/lib/llist.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2010-01-05 10:43:36 -0600
committerRob Landley <rob@landley.net>2010-01-05 10:43:36 -0600
commit53c75045868da4cbc1a20b70d0a0711ae052344c (patch)
tree006c3b30a30d67eae92cf48aaaf349d0d78d5133 /lib/llist.c
parent589f5cdcb7b7ff052c85f9b70dfc6dca692e5934 (diff)
downloadtoybox-53c75045868da4cbc1a20b70d0a0711ae052344c.tar.gz
Typo fix in comment.
Diffstat (limited to 'lib/llist.c')
-rw-r--r--lib/llist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/llist.c b/lib/llist.c
index 9adb64e0..c6e7da33 100644
--- a/lib/llist.c
+++ b/lib/llist.c
@@ -35,7 +35,7 @@ void *llist_pop(void *list)
return (void *)next;
}
-// Add an entry to the end off a doubly linked list
+// Add an entry to the end of a doubly linked list
struct double_list *dlist_add(struct double_list **list, char *data)
{
struct double_list *line = xmalloc(sizeof(struct double_list));