From eb4a4c238939a52f94758fc3135b18502c4d3c0b Mon Sep 17 00:00:00 2001 From: Maryna Kravtsova Date: Sun, 22 Nov 2020 17:34:56 +0100 Subject: [PATCH] buffet --- cv8/program.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cv8/program.c b/cv8/program.c index f3839b5..ae3b8f2 100644 --- a/cv8/program.c +++ b/cv8/program.c @@ -45,7 +45,7 @@ void search(struct tree* this){ printf("Koniec vstupu\n"); exit(0); } - + else{ if(buffer[0] == 'a'){ if(this->left->value[0] == '*'){ printf("%s\n", this->left->value); @@ -78,6 +78,7 @@ void search(struct tree* this){ printf("Nerozumiem\n"); return; } + } } void print_tree(struct tree* tree,int offset){