summaryrefslogtreecommitdiffstats
path: root/zix/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'zix/tree.c')
-rw-r--r--zix/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zix/tree.c b/zix/tree.c
index ab23614..4dd0897 100644
--- a/zix/tree.c
+++ b/zix/tree.c
@@ -566,10 +566,10 @@ zix_tree_remove(ZixTree* t, ZixTreeIter* ti)
if (i->parent) {
if (i == i->parent->left) {
- d_balance = height_change * -1;
+ d_balance = (uint8_t)height_change * -1;
} else {
assert(i == i->parent->right);
- d_balance = height_change;
+ d_balance = (uint8_t)height_change;
}
}
}