summaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-30 23:54:38 +0000
committerDavid Robillard <d@drobilla.net>2011-01-30 23:54:38 +0000
commit5201a6fe1cef5b322c7c9d3ab968199c29c7e8e3 (patch)
tree1c7b10020743346ab89b40a7a31732272fdaf338 /src/world.c
parent41164a763cdc9270dadcf45549c715ce90a47ed5 (diff)
downloadlilv-5201a6fe1cef5b322c7c9d3ab968199c29c7e8e3.tar.gz
lilv-5201a6fe1cef5b322c7c9d3ab968199c29c7e8e3.tar.bz2
lilv-5201a6fe1cef5b322c7c9d3ab968199c29c7e8e3.zip
Replace slv2_plugin_new librdf_node* argument with SLV2Value.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2878 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c
index 01d05cd..f775601 100644
--- a/src/world.c
+++ b/src/world.c
@@ -680,7 +680,9 @@ slv2_world_load_all(SLV2World world)
}
#endif
- SLV2Plugin plugin = slv2_plugin_new(world, uri, bundle_uri);
+ SLV2Plugin plugin = slv2_plugin_new(
+ world, uri, slv2_value_new_librdf_uri(world, bundle_uri));
+
raptor_sequence_push(world->plugins, plugin);
#ifdef SLV2_DYN_MANIFEST