diff options
author | David Robillard <d@drobilla.net> | 2025-06-07 11:58:34 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-06-07 11:58:34 -0400 |
commit | eb77a3da8668d974277682a5000185fc5fcf6ceb (patch) | |
tree | 8ec61b5073176e29ab9450ec5b9a77db755e32df | |
parent | e4cd2ad74eaf230d2e0c2a38e5e9001eca71135a (diff) | |
download | zix-eb77a3da8668d974277682a5000185fc5fcf6ceb.tar.gz zix-eb77a3da8668d974277682a5000185fc5fcf6ceb.tar.bz2 zix-eb77a3da8668d974277682a5000185fc5fcf6ceb.zip |
Add missing const qualifiers
-rw-r--r-- | src/btree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/btree.c b/src/btree.c index c66ae6b..61fbaa7 100644 --- a/src/btree.c +++ b/src/btree.c @@ -154,9 +154,9 @@ zix_btree_free(ZixBTree* const t, } void -zix_btree_clear(ZixBTree* const t, - ZixBTreeDestroyFunc destroy, - const void* destroy_user_data) +zix_btree_clear(ZixBTree* const t, + const ZixBTreeDestroyFunc destroy, + const void* const destroy_user_data) { if (t->root) { zix_btree_free_children(t, t->root, destroy, destroy_user_data); |