diff options
Diffstat (limited to '')
-rw-r--r-- | src/f_com.c | 3 |
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); } |