From c8091831c4ce1c4cf8703b18de22441aff191f44 Mon Sep 17 00:00:00 2001 From: nass1pro Date: Fri, 19 Jun 2020 13:28:41 +0200 Subject: Update parser_error --- src/ast.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ast.c') diff --git a/src/ast.c b/src/ast.c index c878062..4e67c52 100644 --- a/src/ast.c +++ b/src/ast.c @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/01 17:05:42 by charles #+# #+# */ -/* Updated: 2020/06/18 13:39:30 by charles ### ########.fr */ +/* Updated: 2020/06/18 14:46:07 by nahaddac ### ########.fr */ /* */ /* ************************************************************************** */ @@ -46,7 +46,7 @@ void ast_destroy(t_ast *ast) { if (ast == NULL) return ; - ft_lstdestroy(&ast->cmd_argv, (void (*)(void*))token_destroy); + //ft_lstdestroy(&ast->cmd_argv, (void (*)(void*))token_destroy); if (ast->tag == AST_CMD) { ft_lstdestroy(&ast->cmd_argv, (void (*)(void*))token_destroy); -- cgit