From f69ffea87368b913341182321198905fb55a1eeb Mon Sep 17 00:00:00 2001 From: Alina Konoval Date: Mon, 20 Oct 2025 21:30:19 +0200 Subject: [PATCH] 6 --- a1/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a1/program.c b/a1/program.c index 9787192..da874bf 100644 --- a/a1/program.c +++ b/a1/program.c @@ -56,7 +56,7 @@ int main(void) { } char last = stack[top--]; if (match(last) != c) - (void)(printf("Crossed bracket %c in %d, expected %c\n ", c, i , match(last)), exit(0)); + (void)(printf("Crossed bracket %c in %d, expected %c \n", c, i , match(last)), exit(0)); } }