From 6c44c29d69b5728c97948e65d2fd04809ab26fab Mon Sep 17 00:00:00 2001 From: Bohdan Kapliuk Date: Mon, 11 Nov 2024 14:18:18 +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 189b3f2..94e7a6b 100644 --- a/cv7/program.c +++ b/cv7/program.c @@ -58,7 +58,7 @@ void print_tree(struct tree* tree,int offset){ } else if (r == 'n') { print_tree(tree->right, offset + 3); } else { - printf("CHYBOVY VSTUP!\n"); + printf("Nerozumiem\n"); exit(0); } }