summaryrefslogtreecommitdiffstats
path: root/libft
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-08-14 20:50:57 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-08-14 20:50:57 +0200
commita2dc5174eb19caebf074b446dae129d17485e7bb (patch)
tree7fcf83e441d10ed9ef60db10de819b1c927dc263 /libft
parentJust a few more line and we're good (diff)
download42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.tar.gz
42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.tar.bz2
42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.tar.xz
42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.tar.zst
42-minishell-a2dc5174eb19caebf074b446dae129d17485e7bb.zip
&& and || works pretty bav
Diffstat (limited to 'libft')
-rw-r--r--libft/src/ft_split.c4
1 files changed, 2 insertions, 2 deletions
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);
}