From 7339c3c6f211f7903465c2345583de06d727caf6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 10 Aug 2012 04:00:33 +0000 Subject: Always back LilvNode with a SordNode and shave 16 bytes off of LilvNode. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@4642 a436a847-0d15-0410-975c-d299462d15a1 --- src/port.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/port.c') diff --git a/src/port.c b/src/port.c index 2263280..43e5708 100644 --- a/src/port.c +++ b/src/port.c @@ -121,7 +121,8 @@ lilv_port_get_value(const LilvPlugin* p, const LilvNode* predicate) { if (!lilv_node_is_uri(predicate)) { - LILV_ERRORF("Predicate `%s' is not a URI\n", predicate->str_val); + LILV_ERRORF("Predicate `%s' is not a URI\n", + sord_node_get_string(predicate->node)); return NULL; } -- cgit v1.2.1