From eb97119a2fb06b13c33ec67024313c3a5d8d0a5b Mon Sep 17 00:00:00 2001 From: tomoron Date: Tue, 2 Apr 2024 13:34:20 +0200 Subject: [PATCH] debug --- srcs/debug.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/srcs/debug.c b/srcs/debug.c index fbb2503..0115d62 100644 --- a/srcs/debug.c +++ b/srcs/debug.c @@ -6,7 +6,7 @@ /* By: marde-vr +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/02/18 15:46:50 by tomoron #+# #+# */ -/* Updated: 2024/04/02 00:45:25 by tomoron ### ########.fr */ +/* Updated: 2024/04/02 13:34:10 by tomoron ### ########.fr */ /* */ /* ************************************************************************** */ @@ -16,8 +16,7 @@ void print_parsed_token(t_token *token) { while (token) { - printf("["); - printf("ARG : \"%s\"", token->value); + printf("[ARG : \"%s\"]", token->value); token = token->next; } printf("\n");