diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-19 16:59:38 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-19 16:59:38 +0200 |
commit | 49b6183dc0171ac040bdd2faf6f8efa0448567c5 (patch) | |
tree | eaff08562cedef9bf4267b0d17efce0485d2f51e /src/f_chdir.c | |
parent | TODO update (diff) | |
download | 42-minishell-49b6183dc0171ac040bdd2faf6f8efa0448567c5.tar.gz 42-minishell-49b6183dc0171ac040bdd2faf6f8efa0448567c5.tar.bz2 42-minishell-49b6183dc0171ac040bdd2faf6f8efa0448567c5.tar.xz 42-minishell-49b6183dc0171ac040bdd2faf6f8efa0448567c5.tar.zst 42-minishell-49b6183dc0171ac040bdd2faf6f8efa0448567c5.zip |
Cleaner variables handling $0 $1 $2 $3
Diffstat (limited to 'src/f_chdir.c')
-rw-r--r-- | src/f_chdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/f_chdir.c b/src/f_chdir.c index 4623c82..ce69ca5 100644 --- a/src/f_chdir.c +++ b/src/f_chdir.c @@ -23,5 +23,5 @@ void t_msh *msh) { ft_dprintf(STDERR_FILENO, "%s: %s: %s: %s\n", - msh->shname, concern, path, strerror(errno)); + msh->argv[0], concern, path, strerror(errno)); } |