diff --git a/du5/program.c b/du5/program.c index 62fc50b..a0504f4 100644 --- a/du5/program.c +++ b/du5/program.c @@ -78,7 +78,7 @@ void start(Tree *node) { while (node != NULL) { if (node->isAnswer) { - printf("*%s\n", node->text); + printf("* %s\n", node->text); printf("Koniec\n"); return; } @@ -86,7 +86,7 @@ void start(Tree *node) { printf("%s\n", node->text); if (fgets(input, 10, stdin) == NULL) { - printf("Koniec vstupu\n"); + printf("Koniec\n"); return; }