diff options
author | David Robillard <d@drobilla.net> | 2011-11-02 02:11:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-02 02:11:46 +0000 |
commit | b8441be18d69447fcfa8c25ffce74d0a911f4a47 (patch) | |
tree | 52b1a75c8f2a2f1e1a9fae620a5640f6a6399d69 /utils | |
parent | 993f55ab9cb785da97059df5485c745b010ac8b2 (diff) | |
download | lilv-b8441be18d69447fcfa8c25ffce74d0a911f4a47.tar.gz lilv-b8441be18d69447fcfa8c25ffce74d0a911f4a47.tar.bz2 lilv-b8441be18d69447fcfa8c25ffce74d0a911f4a47.zip |
Fix compilation broken in r3593.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3595 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'utils')
-rw-r--r-- | utils/lv2info.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |