summaryrefslogtreecommitdiffstats
path: root/zix/trie.c
diff options
context:
space:
mode:
Diffstat (limited to 'zix/trie.c')
-rw-r--r--zix/trie.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/zix/trie.c b/zix/trie.c
index 0c90601..9942206 100644
--- a/zix/trie.c
+++ b/zix/trie.c
@@ -205,16 +205,16 @@ zix_trie_add_child(ZixTrieNode** n_ptr,
}
ZIX_PRIVATE ZixTrieNode**
-trie_insert_tail(ZixTrieNode** n_ptr,
- const uint8_t* str,
- const uint8_t* first,
- const size_t len)
+trie_insert_tail(ZixTrieNode** n_ptr,
+ const uint8_t* str,
+ const uint8_t* first,
+ ZIX_UNUSED const size_t len)
{
assert(first[0]);
ZixTrieNode* c = NULL;
while (first[0]) {
assert(zix_trie_node_check(*n_ptr));
-
+
c = realloc_node(NULL, 1);
c->str = NULL;
c->num_children = 0;