diff options
author | David Robillard <d@drobilla.net> | 2018-12-28 11:25:15 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-03-24 10:58:32 -0400 |
commit | ccbc5e1993568a3ef27790ebad27b71f3073ca88 (patch) | |
tree | cdd952a2b6cb9201150a3cd232f85fcfba36de7c /utils | |
parent | 52cd7ee00e64a021128034da5855a88be52f0871 (diff) | |
download | lilv-ccbc5e1993568a3ef27790ebad27b71f3073ca88.tar.gz lilv-ccbc5e1993568a3ef27790ebad27b71f3073ca88.tar.bz2 lilv-ccbc5e1993568a3ef27790ebad27b71f3073ca88.zip |
Remove old URI defines
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 81a3ed4..328219c 100644 --- a/utils/lv2info.c +++ b/utils/lv2info.c @@ -399,8 +399,8 @@ main(int argc, char** argv) } applies_to_pred = lilv_new_uri(world, LV2_CORE__appliesTo); - control_class = lilv_new_uri(world, LILV_URI_CONTROL_PORT); - event_class = lilv_new_uri(world, LILV_URI_EVENT_PORT); + control_class = lilv_new_uri(world, LV2_CORE__ControlPort); + event_class = lilv_new_uri(world, LV2_EVENT__EventPort); group_pred = lilv_new_uri(world, LV2_PORT_GROUPS__group); label_pred = lilv_new_uri(world, LILV_NS_RDFS "label"); preset_class = lilv_new_uri(world, LV2_PRESETS__Preset); |