aboutsummaryrefslogtreecommitdiff
path: root/ft_lstadd_back_bonus.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_lstadd_back_bonus.c')
-rw-r--r--ft_lstadd_back_bonus.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ft_lstadd_back_bonus.c b/ft_lstadd_back_bonus.c
index 4a7f758..be2dbf3 100644
--- a/ft_lstadd_back_bonus.c
+++ b/ft_lstadd_back_bonus.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/09 09:02:03 by cacharle #+# #+# */
-/* Updated: 2019/10/18 12:21:08 by cacharle ### ########.fr */
+/* Updated: 2019/10/20 10:55:13 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -15,8 +15,6 @@
void ft_lstadd_back(t_list **alst, t_list *new)
{
- t_list *cursor;
-
if (alst == NULL)
return ;
if (*alst == NULL)