diff options
author | David Robillard <d@drobilla.net> | 2024-12-11 19:12:23 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-12-11 19:39:22 -0500 |
commit | cbaf0af56e7b59f7ba67ca779052ba94e01d37b7 (patch) | |
tree | 3eead43482dd5b76c02c55cbded48174390533cf /src/world.c | |
parent | a23f3b993aa379e99c2fff909ea3934992915d21 (diff) | |
download | lilv-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.c | 2 |
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; } |