aboutsummaryrefslogtreecommitdiff
path: root/llist.h
diff options
context:
space:
mode:
authorSoikk2022-01-30 02:58:14 +0100
committerSoikk2022-01-30 02:58:14 +0100
commit97e61a2cbd3ef78ceebb98555cce4f55fbd44bfd (patch)
tree7861c9ab7d2b884ad043eb536adda50f6242610a /llist.h
parent0f2f47ea7938521b201bde3454c0946240e687ef (diff)
downloadsoikk-llist.h-97e61a2cbd3ef78ceebb98555cce4f55fbd44bfd.tar.xz
soikk-llist.h-97e61a2cbd3ef78ceebb98555cce4f55fbd44bfd.tar.zst
Idk how to undo commit
Diffstat (limited to 'llist.h')
-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)