summaryrefslogtreecommitdiffstats
path: root/src/value.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-29 18:14:16 +0000
committerDavid Robillard <d@drobilla.net>2011-01-29 18:14:16 +0000
commit26ddd2ade551d347794da9237f0a2a55ff88f9f0 (patch)
tree52332ff541c067a64db64e112eb4f71eea05f7d3 /src/value.c
parent4bd0ab43209ab81239cb7ff9ccc9365354a5fb91 (diff)
downloadlilv-26ddd2ade551d347794da9237f0a2a55ff88f9f0.tar.gz
lilv-26ddd2ade551d347794da9237f0a2a55ff88f9f0.tar.bz2
lilv-26ddd2ade551d347794da9237f0a2a55ff88f9f0.zip
Use uint8_t instead of the horribly verbose `unsigned char'.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2852 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 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;