From 53c75045868da4cbc1a20b70d0a0711ae052344c Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 5 Jan 2010 10:43:36 -0600 Subject: Typo fix in comment. --- lib/llist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/llist.c') 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)); -- cgit v1.2.3