diff options
author | David Robillard <d@drobilla.net> | 2011-05-16 22:49:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-16 22:49:30 +0000 |
commit | 3415c74d95538ef1269ec1104e332aa9987f1145 (patch) | |
tree | 8f8a0ad09fd9dd40bf0a5566f26ed950e81b5951 | |
parent | 52386679b5812e2956218a6b35727604760ae655 (diff) | |
download | lilv-3415c74d95538ef1269ec1104e332aa9987f1145.tar.gz lilv-3415c74d95538ef1269ec1104e332aa9987f1145.tar.bz2 lilv-3415c74d95538ef1269ec1104e332aa9987f1145.zip |
Update for new Sord API.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3272 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/plugin.c | 1 | ||||
-rw-r--r-- | src/world.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/plugin.c b/src/plugin.c index 2182c0c..673ea2f 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -158,6 +158,7 @@ lilv_plugin_load(LilvPlugin* p) sord_read_file_handle(p->world->model, env, fd, + "(dyn-manifest)", (const uint8_t*)lilv_node_as_uri(p->dynman_uri), p->bundle_uri->val.uri_val, lilv_world_blank_node_prefix(p->world)); diff --git a/src/world.c b/src/world.c index 696500a..387ba7f 100644 --- a/src/world.c +++ b/src/world.c @@ -463,7 +463,8 @@ lilv_world_load_dyn_manifest(LilvWorld* world, // Parse generated data file SerdEnv* env = serd_env_new(); - sord_read_file_handle(world->model, env, fd, lib_uri, bundle_node, + sord_read_file_handle(world->model, env, fd, "(dyn-manifest)", + lib_uri, bundle_node, lilv_world_blank_node_prefix(world)); serd_env_free(env); |