From 3c5797d09bcbf429b0409bccd398616b2bb4e1d8 Mon Sep 17 00:00:00 2001 From: Bohdan Kapliuk Date: Mon, 11 Nov 2024 14:34:22 +0200 Subject: [PATCH] cv7 --- cv7/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv7/program.c b/cv7/program.c index 327d491..8e6795e 100644 --- a/cv7/program.c +++ b/cv7/program.c @@ -47,7 +47,7 @@ void print_tree(struct tree* tree, int offset) { } printf("%s", tree->value); if (tree->value[0] == '*') { - printf("Koniec vstupu\n"); + printf("Koniec\n"); return; } char r = getchar();