From 97e61a2cbd3ef78ceebb98555cce4f55fbd44bfd Mon Sep 17 00:00:00 2001 From: Soikk Date: Sun, 30 Jan 2022 02:58:14 +0100 Subject: [PATCH] Idk how to undo commit --- llist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5