debug text removed

This commit is contained in:
Jack Halford 2016-11-17 17:56:17 +01:00
parent bcafea5c46
commit 7953965b16
2 changed files with 0 additions and 2 deletions

View file

@ -28,7 +28,6 @@ void ft_lst_delif(
{ {
tmp = (*indirect); tmp = (*indirect);
(*indirect) = (*indirect)->next; (*indirect) = (*indirect)->next;
ft_printf("free'd at %p\n", tmp);
(*del)(tmp->content, tmp->content_size); (*del)(tmp->content, tmp->content_size);
} }
else else

View file

@ -16,7 +16,6 @@ void ft_lstdel(t_list **alst, void (*del)(void *, size_t))
{ {
if (alst && *alst && del) if (alst && *alst && del)
{ {
ft_printf("free'd at %p\n", *alst);
ft_lstdel(&(*alst)->next, del); ft_lstdel(&(*alst)->next, del);
ft_lstdelone(alst, del); ft_lstdelone(alst, del);
*alst = NULL; *alst = NULL;