diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-27 15:15:21 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-27 15:15:21 +0200 |
commit | c80b4e513eaa39e3a132b4bb47237e4673314eca (patch) | |
tree | 76dc953b20ee2657704eb6cc738b8c1e2826e402 /src/f_exec.c | |
parent | Norm and TODO update (diff) | |
download | 42-minishell-c80b4e513eaa39e3a132b4bb47237e4673314eca.tar.gz 42-minishell-c80b4e513eaa39e3a132b4bb47237e4673314eca.tar.bz2 42-minishell-c80b4e513eaa39e3a132b4bb47237e4673314eca.tar.xz 42-minishell-c80b4e513eaa39e3a132b4bb47237e4673314eca.tar.zst 42-minishell-c80b4e513eaa39e3a132b4bb47237e4673314eca.zip |
Fuck this shit
Diffstat (limited to '')
-rw-r--r-- | src/f_exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/f_exec.c b/src/f_exec.c index 3587700..fccfdea 100644 --- a/src/f_exec.c +++ b/src/f_exec.c @@ -21,7 +21,7 @@ void f_exec(const char fullpath[]) { ft_dprintf(STDERR_FILENO, - "minishell: %s: %s\n", - fullpath, - strerror(errno)); + "minishell: %s: %s\n", + fullpath, + strerror(errno)); } |