From 4cb8ca86b91726ff2f419d89decddff73cd51ea6 Mon Sep 17 00:00:00 2001 From: Quinten Mennen Date: Wed, 26 Feb 2025 16:56:24 +0100 Subject: [PATCH] fix error title --- src/utils/error_msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/error_msg.c b/src/utils/error_msg.c index e781c10..2ce1ed1 100644 --- a/src/utils/error_msg.c +++ b/src/utils/error_msg.c @@ -15,10 +15,10 @@ void error_msg(char *func, char *msg) { if (errno) - perror(RED BOLD "msh" RESET); + perror(RED BOLD "minishell" RESET); else { - ft_putstr_fd(RED BOLD "msh" RESET ": ", 2); + ft_putstr_fd(RED BOLD "minishell" RESET ": ", 2); if (func != NULL) { ft_putstr_fd(func, 2);