aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_get_sprite.c
diff options
context:
space:
mode:
authorRudy Bousset <rbousset@z2r5p6.le-101.fr>2020-02-02 17:05:54 +0100
committerRudy Bousset <rbousset@z2r5p6.le-101.fr>2020-02-02 17:05:54 +0100
commit8d7f65c1c04f7124f1a34062be377fdbe721c46a (patch)
tree36ef68573148ba58843608a499504138cca3595d /src/ft_get_sprite.c
parentRemoved whitespace (diff)
download42-cub3d-8d7f65c1c04f7124f1a34062be377fdbe721c46a.tar.gz
42-cub3d-8d7f65c1c04f7124f1a34062be377fdbe721c46a.tar.bz2
42-cub3d-8d7f65c1c04f7124f1a34062be377fdbe721c46a.tar.xz
42-cub3d-8d7f65c1c04f7124f1a34062be377fdbe721c46a.tar.zst
42-cub3d-8d7f65c1c04f7124f1a34062be377fdbe721c46a.zip
Correct ft_memdel
Diffstat (limited to '')
-rw-r--r--src/ft_get_sprite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_get_sprite.c b/src/ft_get_sprite.c
index b412442..b588df7 100644
--- a/src/ft_get_sprite.c
+++ b/src/ft_get_sprite.c
@@ -6,7 +6,7 @@ ft_get_sprite(char **words, t_cub *clist)
{
if (!(*words) || !words[1] || words[2])
return (-1);
- ft_memdel(clist->sprite_path);
+ ft_memdel((void**)&clist->sprite_path);
if (!(clist->sprite_path = ft_strdup(*(words + 1))))
return (-1);
return (0);