diff options
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 }; |