diff options
Diffstat (limited to 'src/zix')
-rw-r--r-- | src/zix/tree.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/zix/tree.c b/src/zix/tree.c index 9faf13c..ac12778 100644 --- a/src/zix/tree.c +++ b/src/zix/tree.c @@ -641,8 +641,9 @@ zix_tree_begin(ZixTree* t) } ZixTreeIter* -zix_tree_end(ZixTree* ZIX_UNUSED(t)) +zix_tree_end(ZixTree* t) { + (void)t; return NULL; } @@ -662,8 +663,9 @@ zix_tree_rbegin(ZixTree* t) } ZixTreeIter* -zix_tree_rend(ZixTree* ZIX_UNUSED(t)) +zix_tree_rend(ZixTree* t) { + (void)t; return NULL; } |