diff options
author | Rob Landley <rob@landley.net> | 2010-01-05 10:43:36 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2010-01-05 10:43:36 -0600 |
commit | 53c75045868da4cbc1a20b70d0a0711ae052344c (patch) | |
tree | 006c3b30a30d67eae92cf48aaaf349d0d78d5133 /lib | |
parent | 589f5cdcb7b7ff052c85f9b70dfc6dca692e5934 (diff) | |
download | toybox-53c75045868da4cbc1a20b70d0a0711ae052344c.tar.gz |
Typo fix in comment.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/llist.c | 2 |
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)); |