diff options
Diffstat (limited to '')
-rw-r--r-- | src/m_loop_multis.c | 2 | ||||
-rw-r--r-- | src/m_loop_multis.h | 1 | ||||
-rw-r--r-- | src/m_minishell.c | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/src/m_loop_multis.c b/src/m_loop_multis.c index 8fc9e7d..d91b7c6 100644 --- a/src/m_loop_multis.c +++ b/src/m_loop_multis.c @@ -83,7 +83,7 @@ static t_bool m_check_missing_quotes(char line[]) return (FALSE); } -char *m_check_multi_quotes(int fd, char line[], t_msh *msh) +static char *m_check_multi_quotes(int fd, char line[], t_msh *msh) { t_bool reparse; diff --git a/src/m_loop_multis.h b/src/m_loop_multis.h index ddef634..a8348e9 100644 --- a/src/m_loop_multis.h +++ b/src/m_loop_multis.h @@ -15,7 +15,6 @@ # include "s_struct.h" -char *m_check_multi_quotes(int fd, char line[], t_msh *msh); char *m_check_multis(int fd, char line[], t_msh *msh); #endif diff --git a/src/m_minishell.c b/src/m_minishell.c index a3226fe..6cd1f61 100644 --- a/src/m_minishell.c +++ b/src/m_minishell.c @@ -34,7 +34,7 @@ int main(int argc, char *const argv[], char *const envp[]) } if (!isatty(STDIN_FILENO) || !isatty(STDOUT_FILENO)) { - ft_dprintf(2, "minishell: innapropriate ioctl device."); + ft_dprintf(STDERR_FILENO, "minishell: innapropriate ioctl device.\n"); exit(1); } ret = m_argv(argc, argv, msh); |