From f6f5f0ce94e60005fae26ad124f66827b1665795 Mon Sep 17 00:00:00 2001 From: Maryna Kravtsova Date: Sun, 22 Nov 2020 15:33:18 +0100 Subject: [PATCH] buffer --- cv8/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv8/program.c b/cv8/program.c index 3bfaa8b..ca76ed9 100644 --- a/cv8/program.c +++ b/cv8/program.c @@ -74,7 +74,7 @@ struct tree* find_minimum(struct tree *root){ } -void tree* destroy_tree(struct tree* root){ +void destroy_tree(struct tree* root){ if(root == NULL) return; /*if(root->left == NULL && root->right == NULL){