commented debug print in parsing

This commit is contained in:
LuckyLaszlo
2021-12-06 01:14:18 +01:00
parent b7b3cec6e0
commit 2d85c34b98

View File

@@ -6,7 +6,7 @@
/* By: lperrey <lperrey@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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);
}