summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-09-10 18:14:01 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-09-10 18:14:01 +0200
commit9e7db36f7afe68a75911d425d496b5e1e9910abe (patch)
tree3b1b0213c84ccd79d99fb3ce4f86164b81d33d79
parentFIX (diff)
download42-minishell-9e7db36f7afe68a75911d425d496b5e1e9910abe.tar.gz
42-minishell-9e7db36f7afe68a75911d425d496b5e1e9910abe.tar.bz2
42-minishell-9e7db36f7afe68a75911d425d496b5e1e9910abe.tar.xz
42-minishell-9e7db36f7afe68a75911d425d496b5e1e9910abe.tar.zst
42-minishell-9e7db36f7afe68a75911d425d496b5e1e9910abe.zip
Removed debug printf
-rw-r--r--src/s_com.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/s_com.c b/src/s_com.c
index 36018ef..95f2d94 100644
--- a/src/s_com.c
+++ b/src/s_com.c
@@ -118,7 +118,6 @@ t_com
return (NULL);
if ((words = p_subst_home(words, msh)) == NULL)
return (NULL);
- ft_printf("%s\n", *words);
words = p_check_args_equals(words, msh);
if (msh->env_fork_tmp[0][0] != '\0')
s_com_cpy_env_fork(&com, msh);