From 40a84e82486d3ca99caaccb5c4f78864d016eb50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Wed, 25 Sep 2024 17:00:09 +0200 Subject: [PATCH] fix use the stderr on message not done --- parser/token/token.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/parser/token/token.c b/parser/token/token.c index a19fb27f..afe6419d 100644 --- a/parser/token/token.c +++ b/parser/token/token.c @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/09/25 16:27:03 by rparodi #+# #+# */ -/* Updated: 2024/09/25 16:58:17 by rparodi ### ########.fr */ +/* Updated: 2024/09/25 16:59:36 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -20,7 +20,7 @@ t_error handle_quote(t_string raw, enum e_token actual, int *output) (void)raw; (void)actual; (void)output; - printf("\tNOT DONE\n"); + dprintf(2, "\tNOT DONE\n"); return (ERROR); } @@ -29,7 +29,7 @@ t_error handle_arithmetic(t_string raw, enum e_token actual, int *output) (void)raw; (void)actual; (void)output; - printf("\tNOT DONE\n"); + dprintf(2, "\tNOT DONE\n"); return (ERROR); } t_error tokeniser(t_string raw, enum e_token actual, int *output)