summaryrefslogtreecommitdiffstats
path: root/src/f_exec.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-08-27 15:15:21 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-08-27 15:15:21 +0200
commitc80b4e513eaa39e3a132b4bb47237e4673314eca (patch)
tree76dc953b20ee2657704eb6cc738b8c1e2826e402 /src/f_exec.c
parentNorm and TODO update (diff)
download42-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.c6
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));
}