diff options
author | David Robillard <d@drobilla.net> | 2014-10-05 04:11:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-10-05 04:11:53 +0000 |
commit | ef4c9adf80f92ff9e628b21901316746b072eb4a (patch) | |
tree | fbd01d03ff8e6d0215af9b6809a6f84bec432bb2 /zix | |
parent | b56fbb79765b783087d84082bce2379792eb77c1 (diff) | |
download | zix-ef4c9adf80f92ff9e628b21901316746b072eb4a.tar.gz zix-ef4c9adf80f92ff9e628b21901316746b072eb4a.tar.bz2 zix-ef4c9adf80f92ff9e628b21901316746b072eb4a.zip |
Compile cleanly as C++.
git-svn-id: http://svn.drobilla.net/zix/trunk@97 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
Diffstat (limited to 'zix')
-rw-r--r-- | zix/btree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zix/btree.c b/zix/btree.c index e7912d0..82a7955 100644 --- a/zix/btree.c +++ b/zix/btree.c @@ -358,7 +358,7 @@ zix_btree_rotate_left(ZixBTreeNode* const parent, const uint16_t i) // Move first child pointer from RHS to end of LHS if (!lhs->is_leaf) { - lhs->children[lhs->n_vals] = zix_btree_aerase( + lhs->children[lhs->n_vals] = (ZixBTreeNode*)zix_btree_aerase( (void**)rhs->children, rhs->n_vals, 0); } |