You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
245 B

--- a/btree_cache.c
+++ b/btree_cache.c
@@ -268,7 +268,7 @@
static struct bt *get_disbalanced_node(struct bt *node)
{
struct bt *rdn;
- if (fabs(node->balanceinfo) > 1)
+ if (abs(node->balanceinfo) > 1)
return node;
if (node->left)
{