summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-09-11 00:33:05 -0400
committerDavid Robillard <d@drobilla.net>2021-09-11 00:33:05 -0400
commitcbc57827e709105efc905cda9eae45cd3fd4599d (patch)
tree8136858400ed22671766fe81db136d4f2842e026
parent5ac34d2fc4f0249500efc5f2c443265353da63ba (diff)
downloadzix-cbc57827e709105efc905cda9eae45cd3fd4599d.tar.gz
zix-cbc57827e709105efc905cda9eae45cd3fd4599d.tar.bz2
zix-cbc57827e709105efc905cda9eae45cd3fd4599d.zip
Fix zix_btree_free() nullable annotation
-rw-r--r--include/zix/btree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zix/btree.h b/include/zix/btree.h
index 82b017a..9a661d6 100644
--- a/include/zix/btree.h
+++ b/include/zix/btree.h
@@ -88,7 +88,7 @@ zix_btree_new(const ZixAllocator* ZIX_NULLABLE allocator,
*/
ZIX_API
void
-zix_btree_free(ZixBTree* ZIX_NONNULL t,
+zix_btree_free(ZixBTree* ZIX_NULLABLE t,
ZixDestroyFunc ZIX_NULLABLE destroy,
const void* ZIX_NULLABLE destroy_user_data);