From 07cd9771bf8198a1bb2f49baf4163c1bc2766bed Mon Sep 17 00:00:00 2001 From: Adam Joly Date: Wed, 14 Aug 2024 10:19:39 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix:=20fixed?= =?UTF-8?q?=20some=20things.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/parsing/check_error/check_wspace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parsing/check_error/check_wspace.c b/src/parsing/check_error/check_wspace.c index d35ea56..f51bdb3 100644 --- a/src/parsing/check_error/check_wspace.c +++ b/src/parsing/check_error/check_wspace.c @@ -6,7 +6,7 @@ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/07/29 19:18:19 by adjoly #+# #+# */ -/* Updated: 2024/07/30 14:36:47 by adjoly ### ########.fr */ +/* Updated: 2024/08/14 09:58:59 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ @@ -18,6 +18,6 @@ bool check_wspace(char *readline) while (*readline && ft_isspace(*readline)) readline++; if (!*readline) - return (send_error_parsing("Only white space in line")); + return (true); return (false); }