diff options
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 f4c48df..d9e8a9c 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 = librdf_new_uri(world->world, (const unsigned char*)str); + val->val.uri_val = librdf_new_uri(world->world, (const uint8_t*)str); assert(val->val.uri_val); val->str_val = (char*)librdf_uri_as_string(val->val.uri_val); break; |