aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.c')
-rw-r--r--src/ast.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ast.c b/src/ast.c
index 6c1e51b..192c213 100644
--- a/src/ast.c
+++ b/src/ast.c
@@ -6,7 +6,7 @@
/* By: charles <charles@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/01 17:05:42 by charles #+# #+# */
-/* Updated: 2020/10/06 09:58:35 by cacharle ### ########.fr */
+/* Updated: 2020/10/07 15:56:19 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -31,8 +31,6 @@ t_ast *ast_new(enum e_ast tag)
return (NULL);
ast->tag = tag;
ast->redirs = NULL;
- ast->op.left = NULL;
- ast->op.right = NULL;
ast->cmd_argv = NULL;
return (ast);
}