diff options
Diffstat (limited to '')
-rw-r--r-- | src/m_minishell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/m_minishell.c b/src/m_minishell.c index 938779c..e9475b3 100644 --- a/src/m_minishell.c +++ b/src/m_minishell.c @@ -28,7 +28,7 @@ int main(int argc, char *const argv[], char *const envp[]) int32_t ret; t_msh *msh; - if ((msh = init_msh(argc, argv, envp)) == NULL) + if ((msh = s_init_msh(argc, argv, envp)) == NULL) { ft_dprintf(STDERR_FILENO, "%s\n", strerror(errno)); return (M_RET_ALLOC); |