From 5201a6fe1cef5b322c7c9d3ab968199c29c7e8e3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 30 Jan 2011 23:54:38 +0000 Subject: 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 --- src/plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugin.c') diff --git a/src/plugin.c b/src/plugin.c index 43eb0f8..4e2a630 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -37,13 +37,13 @@ /* private * ownership of uri is taken */ SLV2Plugin -slv2_plugin_new(SLV2World world, SLV2Value uri, librdf_uri* bundle_uri) +slv2_plugin_new(SLV2World world, SLV2Value uri, SLV2Value bundle_uri) { assert(bundle_uri); struct _SLV2Plugin* plugin = malloc(sizeof(struct _SLV2Plugin)); plugin->world = world; plugin->plugin_uri = uri; - plugin->bundle_uri = slv2_value_new_librdf_uri(world, bundle_uri); + plugin->bundle_uri = bundle_uri; plugin->binary_uri = NULL; #ifdef SLV2_DYN_MANIFEST plugin->dynman_uri = NULL; -- cgit v1.2.1