diff options
Diffstat (limited to 'src/s_com.c')
-rw-r--r-- | src/s_com.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/s_com.c b/src/s_com.c index ee55c58..6d6ee09 100644 --- a/src/s_com.c +++ b/src/s_com.c @@ -20,7 +20,7 @@ #include "s_struct.h" static int8_t - fill_com(char *words[], t_com **com) + s_fill_com(char *words[], t_com **com) { /* TODO: norme */ uint64_t i; @@ -121,7 +121,7 @@ t_com words = p_check_args_equals(words, msh); if (msh->env_fork_tmp[0][0] != '\0') s_com_cpy_env_fork(&com, msh); - if (fill_com(words, &com) < 0) + if (s_fill_com(words, &com) < 0) { ft_delwords(words); return (NULL); |