summaryrefslogtreecommitdiffstats
path: root/src/f_com.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-08-15 18:20:23 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-08-15 18:20:23 +0200
commit7df3f33f3c644e53577b53fed433bfe9a4ff0715 (patch)
tree226cb02e6cd877df38bd6fafa5066b643380d71d /src/f_com.c
parentCan read scripts, but need to handle fails (diff)
download42-minishell-7df3f33f3c644e53577b53fed433bfe9a4ff0715.tar.gz
42-minishell-7df3f33f3c644e53577b53fed433bfe9a4ff0715.tar.bz2
42-minishell-7df3f33f3c644e53577b53fed433bfe9a4ff0715.tar.xz
42-minishell-7df3f33f3c644e53577b53fed433bfe9a4ff0715.tar.zst
42-minishell-7df3f33f3c644e53577b53fed433bfe9a4ff0715.zip
Error handling ok
Diffstat (limited to 'src/f_com.c')
-rw-r--r--src/f_com.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/f_com.c b/src/f_com.c
index 9c4e02a..5ca03eb 100644
--- a/src/f_com.c
+++ b/src/f_com.c
@@ -19,5 +19,6 @@
void
f_fail_command_not_found(const char command[])
{
- ft_dprintf(STDERR_FILENO, "%s: %s: %s\n", "minishell", command, FT_FAIL_COMMAND_NOT_FOUND);
+ ft_dprintf(STDERR_FILENO, "%s: %s: %s\n", "minishell", command,
+ FT_FAIL_COMMAND_NOT_FOUND);
}