From 01b153656d616948e525e2a76453d0ed5f8ed950 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 19 Mar 2008 18:10:08 +0000 Subject: Fix URI map extension implemenation in lv2_jack_host. git-svn-id: http://svn.drobilla.net/lad/slv2@1177 a436a847-0d15-0410-975c-d299462d15a1 --- hosts/lv2_jack_host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hosts') 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 }; -- cgit v1.2.1