summaryrefslogtreecommitdiffstats
path: root/src/ft_error.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_error.c')
-rw-r--r--src/ft_error.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ft_error.c b/src/ft_error.c
index 2cc9cb6..2216eae 100644
--- a/src/ft_error.c
+++ b/src/ft_error.c
@@ -1,7 +1,7 @@
#include <libft.h>
#include <minishell.h>
-void
+int
ft_error(const char *com, int errno)
{
ft_putstr("joe-sh: ");
@@ -10,5 +10,7 @@ ft_error(const char *com, int errno)
ft_putendl(": too many arguments");
else if (errno == 127)
ft_putendl(": command not found");
+ else if (errno == 255)
+ ft_putendl(": numeric argument required");
return (errno);
}