diff options
author | David Robillard <d@drobilla.net> | 2011-04-30 03:03:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-30 03:03:42 +0000 |
commit | 7a507f3805a849b906eb78ed1debef0c9812bb3a (patch) | |
tree | 9dce35a243eb3e3e6d519f116f3ec7be77666385 /src/node.c | |
parent | d55f87b341e1855f2f6f544649f17f36aa22d7e4 (diff) | |
download | lilv-7a507f3805a849b906eb78ed1debef0c9812bb3a.tar.gz lilv-7a507f3805a849b906eb78ed1debef0c9812bb3a.tar.bz2 lilv-7a507f3805a849b906eb78ed1debef0c9812bb3a.zip |
Consistent error and warning message style.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3243 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/node.c')
-rw-r--r-- | src/node.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -116,7 +116,8 @@ lilv_node_new_from_node(LilvWorld* world, const SordNode* node) else if (sord_node_equals(datatype_uri, world->xsd_integer_node)) type = LILV_VALUE_INT; else - LILV_ERRORF("Unknown datatype %s\n", sord_node_get_string(datatype_uri)); + LILV_ERRORF("Unknown datatype `%s'\n", + sord_node_get_string(datatype_uri)); } result = lilv_node_new(world, type, (const char*)sord_node_get_string(node)); switch (result->type) { |