diff options
author | David Robillard <d@drobilla.net> | 2011-02-16 02:14:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-16 02:14:40 +0000 |
commit | beebe6550e4fc00780b9cff57084bf5da3c56118 (patch) | |
tree | 861a5de6f3398c9115ab1930688193c4cce3b5dc /src/value.c | |
parent | 4cc15fb56f579e7eab9e0b947c433b96bc4c26f8 (diff) | |
download | lilv-beebe6550e4fc00780b9cff57084bf5da3c56118.tar.gz lilv-beebe6550e4fc00780b9cff57084bf5da3c56118.tar.bz2 lilv-beebe6550e4fc00780b9cff57084bf5da3c56118.zip |
Update for new Sord API.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2956 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/value.c')
-rw-r--r-- | src/value.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.c b/src/value.c index 51ff1a1..0e73aba 100644 --- a/src/value.c +++ b/src/value.c @@ -74,7 +74,7 @@ slv2_value_new(SLV2World world, SLV2ValueType type, const char* str) switch (type) { case SLV2_VALUE_URI: - val->val.uri_val = sord_new_uri(world->model, (const uint8_t*)str); + val->val.uri_val = sord_new_uri(world->world, (const uint8_t*)str); assert(val->val.uri_val); val->str_val = (char*)sord_node_get_string(val->val.uri_val); break; |