From ea4087e0029c4f6c6f80716b50ddf60120598b1b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 4 Feb 2011 05:23:45 +0000 Subject: Update for uint8_t sord API. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2907 a436a847-0d15-0410-975c-d299462d15a1 --- src/value.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/value.c') 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; -- cgit v1.2.1