diff options
author | David Robillard <d@drobilla.net> | 2011-04-28 00:19:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-28 00:19:34 +0000 |
commit | 6259cdfd5365898a3be6e2967714e610b93acee2 (patch) | |
tree | 2efb66fccf105deb41b5b897056dd67b142ca672 /src/value.c | |
parent | 03e318d5d80b0cfda96efc58e270693eeabe9a79 (diff) | |
download | lilv-6259cdfd5365898a3be6e2967714e610b93acee2.tar.gz lilv-6259cdfd5365898a3be6e2967714e610b93acee2.tar.bz2 lilv-6259cdfd5365898a3be6e2967714e610b93acee2.zip |
Update for new Sord API.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3202 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/value.c')
-rw-r--r-- | src/value.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/value.c b/src/value.c index e39e860..477fc0d 100644 --- a/src/value.c +++ b/src/value.c @@ -92,10 +92,10 @@ slv2_value_new(SLV2World world, SLV2ValueType type, const char* str) /** Create a new SLV2Value from @a node, or return NULL if impossible */ SLV2Value -slv2_value_new_from_node(SLV2World world, SordNode node) +slv2_value_new_from_node(SLV2World world, SordNode* node) { SLV2Value result = NULL; - SordNode datatype_uri = NULL; + SordNode* datatype_uri = NULL; SLV2ValueType type = SLV2_VALUE_STRING; switch (sord_node_get_type(node)) { |