diff options
author | David Robillard <d@drobilla.net> | 2008-03-19 18:10:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-03-19 18:10:08 +0000 |
commit | 01b153656d616948e525e2a76453d0ed5f8ed950 (patch) | |
tree | 7c5fe8b443046b7d04f728d6b0274e97b2173777 /hosts | |
parent | ca0ea9f5758a6ae27684888d2e33e801e5dfe682 (diff) | |
download | lilv-01b153656d616948e525e2a76453d0ed5f8ed950.tar.gz lilv-01b153656d616948e525e2a76453d0ed5f8ed950.tar.bz2 lilv-01b153656d616948e525e2a76453d0ed5f8ed950.zip |
Fix URI map extension implemenation in lv2_jack_host.
git-svn-id: http://svn.drobilla.net/lad/slv2@1177 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/lv2_jack_host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/lv2_jack_host.c b/hosts/lv2_jack_host.c index 3be7ac1..d776c34 100644 --- a/hosts/lv2_jack_host.c +++ b/hosts/lv2_jack_host.c @@ -82,7 +82,7 @@ uri_to_id(LV2_URI_Map_Callback_Data callback_data, return 0; // no id for you! } -static LV2_URI_Map_Feature uri_map = { &uri_to_id, NULL }; +static LV2_URI_Map_Feature uri_map = { NULL, &uri_to_id }; static const LV2_Feature uri_map_feature = { "http://lv2plug.in/ns/ext/uri-map", &uri_map }; const LV2_Feature* features[2] = { &uri_map_feature, NULL }; |