From b8441be18d69447fcfa8c25ffce74d0a911f4a47 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 2 Nov 2011 02:11:46 +0000 Subject: Fix compilation broken in r3593. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3595 a436a847-0d15-0410-975c-d299462d15a1 --- utils/lv2info.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/lv2info.c') diff --git a/utils/lv2info.c b/utils/lv2info.c index 6f664b3..747e71c 100644 --- a/utils/lv2info.c +++ b/utils/lv2info.c @@ -274,7 +274,7 @@ print_plugin(LilvWorld* world, LILV_FOREACH(nodes, i, presets) { LilvNodes* titles = lilv_world_find_nodes(world, lilv_nodes_get(presets, i), - title_pred, + label_pred, NULL); if (titles) { const LilvNode* title = lilv_nodes_get(titles, lilv_nodes_begin(titles)); @@ -369,7 +369,7 @@ main(int argc, char** argv) in_group_pred = lilv_new_uri(world, NS_PG "inGroup"); preset_pred = lilv_new_uri(world, NS_PSET "hasPreset"); role_pred = lilv_new_uri(world, NS_PG "role"); - label_pred = lilv_new_uri(world, LILB_NS_RDFS "label"); + label_pred = lilv_new_uri(world, LILV_NS_RDFS "label"); supports_event_pred = lilv_new_uri(world, NS_EV "supportsEvent"); const LilvPlugins* plugins = lilv_world_get_all_plugins(world); -- cgit v1.2.1