From 3cd69971c1eebb2515582174705d9781149ac119 Mon Sep 17 00:00:00 2001 From: narnaud Date: Fri, 27 May 2022 09:19:26 +0200 Subject: [PATCH] fix: another stupidity --- errors.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/errors.c b/errors.c index fed724b..a2fb5c5 100644 --- a/errors.c +++ b/errors.c @@ -6,7 +6,7 @@ /* By: mea +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/05/06 13:15:59 by narnaud #+# #+# */ -/* Updated: 2022/05/27 09:16:02 by narnaud ### ########.fr */ +/* Updated: 2022/05/27 09:18:55 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ @@ -45,7 +45,7 @@ int is_valid_identifier(char *ident, int silent) return (1); } if (!silent && cmd_error("export", - "not an identifier: ", "\n")) + "not an identifier: ", ident)) ft_putchar_fd('\n', 2); return (0); }