From a2dc5174eb19caebf074b446dae129d17485e7bb Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Fri, 14 Aug 2020 20:50:57 +0200 Subject: && and || works pretty bav --- libft/src/ft_split.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libft/src') diff --git a/libft/src/ft_split.c b/libft/src/ft_split.c index 3035a00..34cd57a 100644 --- a/libft/src/ft_split.c +++ b/libft/src/ft_split.c @@ -75,10 +75,10 @@ static char { while (j > 0) { - ft_memdel((void**)&best_split[j]); + ft_memdel((void*)&best_split[j]); j--; } - ft_memdel((void**)best_split); + ft_memdel((void*)&best_split); return (NULL); } -- cgit v1.2.3