From 021286a605acf12c80bb0bec21611e36d4887c22 Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Thu, 17 Nov 2016 17:56:17 +0100 Subject: [PATCH] debug text removed --- libftasm/src/lst/ft_lst_delif.c | 1 - libftasm/src/lst/ft_lstdel.c | 1 - 2 files changed, 2 deletions(-) diff --git a/libftasm/src/lst/ft_lst_delif.c b/libftasm/src/lst/ft_lst_delif.c index 62a76754..1acf6fd4 100644 --- a/libftasm/src/lst/ft_lst_delif.c +++ b/libftasm/src/lst/ft_lst_delif.c @@ -28,7 +28,6 @@ void ft_lst_delif( { tmp = (*indirect); (*indirect) = (*indirect)->next; - ft_printf("free'd at %p\n", tmp); (*del)(tmp->content, tmp->content_size); } else diff --git a/libftasm/src/lst/ft_lstdel.c b/libftasm/src/lst/ft_lstdel.c index 5a97607e..1e1ce39c 100644 --- a/libftasm/src/lst/ft_lstdel.c +++ b/libftasm/src/lst/ft_lstdel.c @@ -16,7 +16,6 @@ void ft_lstdel(t_list **alst, void (*del)(void *, size_t)) { if (alst && *alst && del) { - ft_printf("free'd at %p\n", *alst); ft_lstdel(&(*alst)->next, del); ft_lstdelone(alst, del); *alst = NULL;