aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoikk2022-01-30 02:58:53 +0100
committerSoikk2022-01-30 02:58:53 +0100
commit0e63b410facd080f764885b530ebd6f84a701dc0 (patch)
tree5df7c92dccb3e90be997d703c7954f64171f1a65
parent97e61a2cbd3ef78ceebb98555cce4f55fbd44bfd (diff)
downloadsoikk-llist.h-master.tar.xz
soikk-llist.h-master.tar.zst
Sorry, fixed appendHEADmaster
-rw-r--r--llist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llist.h b/llist.h
index b37e72b..cdef2cd 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)