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