diff options
Diffstat (limited to 'll.c')
-rw-r--r-- | ll.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,6 +5,6 @@ llnode* appendll(llnode* tail, char* str){ llnode* new = malloc(sizeof(llnode)); if (tail != NULL) tail->next = new; new->str = str; - new->loc = 0; + new->end = 0; return new; } |