From fcabd706ec5c6a8e45de3484a669c5d92c7eead2 Mon Sep 17 00:00:00 2001 From: "alec.schmidt" <alec.schmidt@etu.hesge.ch> Date: Sat, 28 May 2022 17:25:57 +0200 Subject: [PATCH] Update bp_tree.c --- bp_tree.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/bp_tree.c b/bp_tree.c index 73d5775..248423a 100644 --- a/bp_tree.c +++ b/bp_tree.c @@ -170,13 +170,11 @@ node* bp_insert_val(node* tree, int val) printf("%d\n", tree->count); if (tree->count == M) { - printf("prout\n"); return bp_split_root(tree); } return tree; } - tree = bp_create_node(); tree->childs[0] = test.lhs; -- GitLab