diff --git a/a1/program.c b/a1/program.c index 2b3efb9..06dafd1 100644 --- a/a1/program.c +++ b/a1/program.c @@ -38,7 +38,7 @@ int main() { } } else if (isClosing(current)) { if (top == -1) { - printf("Unexpected closing bracket '%c' in %d.\n", current, i); + printf("Unexpected closing bracket %c in %d.\n", current, i); return 0; } if (!isMatching(stack[top], current)) {