From a07a8818f22bfa6b467093f1efd287e86983fdf1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 6 Oct 2024 14:38:00 -0400 Subject: Remove redundant conditional --- src/world.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/world.c b/src/world.c index b0ef24d..b6bdf85 100644 --- a/src/world.c +++ b/src/world.c @@ -264,7 +264,7 @@ lilv_world_get(LilvWorld* world, SordNode* snode = sord_get(world->model, subject ? subject->node : NULL, predicate ? predicate->node : NULL, - object ? object->node : NULL, + object->node, NULL); LilvNode* lnode = lilv_node_new_from_node(world, snode); sord_node_free(world->world, snode); -- cgit v1.2.1