summaryrefslogtreecommitdiffstats
path: root/src/b_cd.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/b_cd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/b_cd.c b/src/b_cd.c
index 887266e..a4dbba6 100644
--- a/src/b_cd.c
+++ b/src/b_cd.c
@@ -11,7 +11,6 @@
/* ************************************************************************** */
#include <libft.h>
-#include <stdint.h>
#include <unistd.h>
#ifdef __linux__
# include <linux/limits.h>
@@ -107,9 +106,9 @@ static void b_upgrade_pwd(const char path[], t_msh *msh)
f_alloc_and_destroy_msh(msh);
}
-uint8_t b_cd(char *args[], t_msh *msh)
+unsigned char b_cd(char *args[], t_msh *msh)
{
- const uint64_t argc = u_builtins_get_argc((const char**)args);
+ const unsigned long argc = u_builtins_get_argc((const char**)args);
char path[PATH_MAX];
if (argc >= 2)