diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-21 23:39:33 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-21 23:39:33 +0200 |
commit | dddfdcc7575b351739434aec5116dbcc70fe9ab0 (patch) | |
tree | 1df0ab541e72fb338d291590cd63b17ac9dc95c6 | |
parent | In progress (diff) | |
download | 42-minishell-dddfdcc7575b351739434aec5116dbcc70fe9ab0.tar.gz 42-minishell-dddfdcc7575b351739434aec5116dbcc70fe9ab0.tar.bz2 42-minishell-dddfdcc7575b351739434aec5116dbcc70fe9ab0.tar.xz 42-minishell-dddfdcc7575b351739434aec5116dbcc70fe9ab0.tar.zst 42-minishell-dddfdcc7575b351739434aec5116dbcc70fe9ab0.zip |
Removed debug printf
Diffstat (limited to '')
-rw-r--r-- | src/m_loop.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/m_loop.c b/src/m_loop.c index eea9150..b111577 100644 --- a/src/m_loop.c +++ b/src/m_loop.c @@ -43,7 +43,6 @@ static void m_parse_and_run_line(char line[], t_msh *msh) ptr = msh->curr; while (ptr != NULL) { - ft_printf("[%s]\n", ptr->lblock); if ((previf == 0) || (previf == 1 && msh->ret == 0) || (previf == 2 && msh->ret != 0)) { |