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");