aboutsummaryrefslogtreecommitdiff
path: root/ll.c
diff options
context:
space:
mode:
Diffstat (limited to 'll.c')
-rw-r--r--ll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ll.c b/ll.c
index d929b2f..40c5f99 100644
--- a/ll.c
+++ b/ll.c
@@ -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;
}