summaryrefslogtreecommitdiffstats
path: root/src/value.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-04 05:23:45 +0000
committerDavid Robillard <d@drobilla.net>2011-02-04 05:23:45 +0000
commitea4087e0029c4f6c6f80716b50ddf60120598b1b (patch)
treeba9294615965a89001baa8a2aef3f85a621105cd /src/value.c
parentb2789940c700c882bf59eedac74487db54a0b3d5 (diff)
downloadlilv-ea4087e0029c4f6c6f80716b50ddf60120598b1b.tar.gz
lilv-ea4087e0029c4f6c6f80716b50ddf60120598b1b.tar.bz2
lilv-ea4087e0029c4f6c6f80716b50ddf60120598b1b.zip
Update for uint8_t sord API.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2907 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/value.c')
-rw-r--r--src/value.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.c b/src/value.c
index 8e63edc..ff74f9e 100644
--- a/src/value.c
+++ b/src/value.c
@@ -73,7 +73,7 @@ slv2_value_new(SLV2World world, SLV2ValueType type, const char* str)
switch (type) {
case SLV2_VALUE_URI:
- val->val.uri_val = sord_get_uri(world->model, true, str);
+ val->val.uri_val = sord_get_uri(world->model, true, (const uint8_t*)str);
assert(val->val.uri_val);
val->str_val = (char*)sord_node_get_string(val->val.uri_val);
break;