This commit is contained in:
Nathan Lebrun
2025-01-31 13:09:35 +01:00
parent 2367f6a42d
commit 304eeb73eb
8 changed files with 94 additions and 17 deletions

View File

@@ -27,7 +27,7 @@ static t_node *tokenize_base(char *str)
i = 1;
while (tab[i])
{
if (!add_node_back(head, tab[i], 0))
if (!add_node_back(&head, tab[i], 0, 0))
return (free(tab), NULL);
i++;
}