diff options
author | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-02-02 17:05:54 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-02-02 17:05:54 +0100 |
commit | 8d7f65c1c04f7124f1a34062be377fdbe721c46a (patch) | |
tree | 36ef68573148ba58843608a499504138cca3595d /libft/src/ft_printf_get_flags.c | |
parent | Removed whitespace (diff) | |
download | 42-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 'libft/src/ft_printf_get_flags.c')
-rw-r--r-- | libft/src/ft_printf_get_flags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libft/src/ft_printf_get_flags.c b/libft/src/ft_printf_get_flags.c index 80ee47c..8dffd9a 100644 --- a/libft/src/ft_printf_get_flags.c +++ b/libft/src/ft_printf_get_flags.c @@ -36,7 +36,7 @@ char if (!(fullflag = (char*)malloc((i + 1) * sizeof(char)))) return (NULL); ft_memcpy(fullflag, nstr = ft_substr(format, pos + 1, i), i); - ft_memdel(nstr); + ft_memdel((void**)&nstr); fullflag[i] = '\0'; pflist->actconv = *(format + pos + i + 1); return (fullflag); |