summaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c
index a7f25cc..696500a 100644
--- a/src/world.c
+++ b/src/world.c
@@ -506,7 +506,7 @@ lilv_world_load_bundle(LilvWorld* world, LilvNode* bundle_uri)
(const uint8_t*)sord_node_get_string(bundle_node));
SerdEnv* env = serd_env_new();
- if (!sord_read_file(world->model, env, manifest_uri.buf, bundle_node,
+ if (!sord_read_file(world->model, env, manifest_uri.buf, NULL, bundle_node,
lilv_world_blank_node_prefix(world))) {
serd_env_free(env);
return;
@@ -673,6 +673,7 @@ lilv_world_load_specifications(LilvWorld* world)
env,
(const uint8_t*)lilv_node_as_uri(file),
NULL,
+ NULL,
lilv_world_blank_node_prefix(world));
serd_env_free(env);
}