aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_free_words.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_free_words.c')
-rw-r--r--src/ft_free_words.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_free_words.c b/src/ft_free_words.c
index 3231791..1029710 100644
--- a/src/ft_free_words.c
+++ b/src/ft_free_words.c
@@ -8,8 +8,8 @@ ft_free_words(char **words)
i = 0;
while (words[i])
{
- ft_memdel(words[i]);
+ ft_memdel((void**)&words[i]);
i++;
}
- ft_memdel(words);
+ ft_memdel((void**)&words);
}