diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-03 17:04:30 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-03 17:04:30 +0200 |
commit | 3b32afb082ba823885ac355413294b5e7ff3c360 (patch) | |
tree | d7e681414cad330888bad6d7ddf0a22479c934ab /src/b_exit.c | |
parent | Cleaner headers (diff) | |
download | 42-minishell-3b32afb082ba823885ac355413294b5e7ff3c360.tar.gz 42-minishell-3b32afb082ba823885ac355413294b5e7ff3c360.tar.bz2 42-minishell-3b32afb082ba823885ac355413294b5e7ff3c360.tar.xz 42-minishell-3b32afb082ba823885ac355413294b5e7ff3c360.tar.zst 42-minishell-3b32afb082ba823885ac355413294b5e7ff3c360.zip |
Changed function name
Diffstat (limited to 'src/b_exit.c')
-rw-r--r-- | src/b_exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/b_exit.c b/src/b_exit.c index 5f1c446..5384d25 100644 --- a/src/b_exit.c +++ b/src/b_exit.c @@ -26,7 +26,7 @@ uint8_t t_msh *msh) { uint8_t ret; - const uint64_t argc = get_argc((const char**)args); + const uint64_t argc = u_builtins_get_argc((const char**)args); if (argc > 1) { |