aboutsummaryrefslogtreecommitdiff
path: root/lib/llist.c
diff options
context:
space:
mode:
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));