diff --git a/du5/program.c b/du5/program.c index 4a0f49e..85e7e63 100644 --- a/du5/program.c +++ b/du5/program.c @@ -47,7 +47,7 @@ void run_system(struct Node* node) { if (node == NULL) return; printf("%s", node->value); if (node->left == NULL && node->right == NULL) { - printf("Koniec vstupu\n"); + printf("Koniec\n"); return; } char answer[SIZE]; @@ -80,5 +80,6 @@ int main(void) { run_system(root); destroy_tree(root); + return 0; } \ No newline at end of file