From ff7f7fa2b0f0db3dc2adeb65929510126c371b26 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Wed, 3 Oct 2018 00:49:39 -0700 Subject: libix2: make split_node() static This is a private helper function. --- src/ix2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ix2.c b/src/ix2.c index c6582a9..e955283 100644 --- a/src/ix2.c +++ b/src/ix2.c @@ -291,7 +291,7 @@ static void remove_object(ix2_object_t *object) /* Split node and distribute objects referenced from node->objects into a * newly created node->children. */ -ix2_node_t * split_node(ix2_t *ix2, unsigned *depth, ix2_node_t *node, bb2f_t *node_aabb) +static ix2_node_t * split_node(ix2_t *ix2, unsigned *depth, ix2_node_t *node, bb2f_t *node_aabb) { bb2f_t quadrants[4]; ix2_object_ref_t *r, *_r; -- cgit v1.2.3