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.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ft_error.c b/src/ft_error.c
index 5d0234f..7a2b61a 100644
--- a/src/ft_error.c
+++ b/src/ft_error.c
@@ -15,15 +15,15 @@
#include <minishell.h>
int
-ft_error(const char *com, int errno)
+ft_error(const char *com, int err)
{
ft_putstr("joe-sh: ");
ft_putstr(com);
- if (errno == 1)
+ if (err == 1)
ft_putendl(": too many arguments");
- else if (errno == 127)
+ else if (err == 127)
ft_putendl(": command not found");
- else if (errno == 255)
+ else if (err == 255)
ft_putendl(": numeric argument required");
- return (errno);
+ return (err);
}