From 2dff0d522812e7e1e32f87e6edf21100e268e0ed Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Wed, 30 Oct 2019 18:16:42 +0100 Subject: work work --- src/ft_error.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ft_error.c') 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 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); } -- cgit v1.2.3