From cbaf0af56e7b59f7ba67ca779052ba94e01d37b7 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Wed, 11 Dec 2024 19:12:23 -0500
Subject: Check or explicitly ignore return values

---
 src/world.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/world.c')

diff --git a/src/world.c b/src/world.c
index 1d60c45..73f19a9 100644
--- a/src/world.c
+++ b/src/world.c
@@ -384,7 +384,7 @@ lilv_collection_find_by_uri(const ZixTree* seq, const LilvNode* uri)
   ZixTreeIter* i = NULL;
   if (lilv_node_is_uri(uri)) {
     struct LilvHeader key = {NULL, (LilvNode*)uri};
-    zix_tree_find(seq, &key, &i);
+    (void)zix_tree_find(seq, &key, &i);
   }
   return i;
 }
-- 
cgit v1.2.1