summaryrefslogtreecommitdiffstats
path: root/src/node.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-30 03:03:42 +0000
committerDavid Robillard <d@drobilla.net>2011-04-30 03:03:42 +0000
commit7a507f3805a849b906eb78ed1debef0c9812bb3a (patch)
tree9dce35a243eb3e3e6d519f116f3ec7be77666385 /src/node.c
parentd55f87b341e1855f2f6f544649f17f36aa22d7e4 (diff)
downloadlilv-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node.c b/src/node.c
index d7ee26a..1344e8f 100644
--- a/src/node.c
+++ b/src/node.c
@@ -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) {