From: Soikk Date: Sun, 30 Jan 2022 01:58:53 +0000 (+0100) Subject: Sorry, fixed append X-Git-Url: https://git.xolatile.top/?a=commitdiff_plain;ds=inline;p=soikk-llist.h.git Sorry, fixed append --- 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)