aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--llist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llist.h b/llist.h
index cdef2cd..b37e72b 100644
--- a/llist.h
+++ b/llist.h
@@ -26,7 +26,7 @@ llist Llist(char *name, node *head){
return nllist;
}
-void append(llist *l, node *n){
+void append(llist l, node *n){
if(l->head != NULL){
node *temp = l->head;
while(temp->next != NULL)