summaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-12-11 19:12:23 -0500
committerDavid Robillard <d@drobilla.net>2024-12-11 19:39:22 -0500
commitcbaf0af56e7b59f7ba67ca779052ba94e01d37b7 (patch)
tree3eead43482dd5b76c02c55cbded48174390533cf /src/world.c
parenta23f3b993aa379e99c2fff909ea3934992915d21 (diff)
downloadlilv-cbaf0af56e7b59f7ba67ca779052ba94e01d37b7.tar.gz
lilv-cbaf0af56e7b59f7ba67ca779052ba94e01d37b7.tar.bz2
lilv-cbaf0af56e7b59f7ba67ca779052ba94e01d37b7.zip
Check or explicitly ignore return values
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c2
1 files changed, 1 insertions, 1 deletions
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;
}