From 2d85c34b98276171e68378eea22f8f2ca43bd947 Mon Sep 17 00:00:00 2001 From: LuckyLaszlo Date: Mon, 6 Dec 2021 01:14:18 +0100 Subject: [PATCH] commented debug print in parsing --- srcs/parsing/parsing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcs/parsing/parsing.c b/srcs/parsing/parsing.c index a8f0f86..bf2708f 100644 --- a/srcs/parsing/parsing.c +++ b/srcs/parsing/parsing.c @@ -6,7 +6,7 @@ /* By: lperrey +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/10/24 10:52:40 by lperrey #+# #+# */ -/* Updated: 2021/11/29 12:28:07 by lperrey ### ########.fr */ +/* Updated: 2021/12/06 01:08:11 by lperrey ### ########.fr */ /* */ /* ************************************************************************** */ @@ -78,7 +78,7 @@ t_cmd **parsing(t_token *token_list) // Struct CMD fill if (!pipeline_fill_argv(token_list, pipeline)) return (ft_retp_free(NULL, &pipeline, (t_free_f)free_pipeline)); - print_pipeline(pipeline); + //print_pipeline(pipeline); return (pipeline); }