From 572832bfd010ee82717ea0217b125404d11e5a16 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 1 May 2008 21:16:31 +0000 Subject: GCC 4.3 fixes. git-svn-id: http://svn.drobilla.net/lad/slv2@1191 a436a847-0d15-0410-975c-d299462d15a1 --- hosts/lv2_jack_host.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'hosts') diff --git a/hosts/lv2_jack_host.c b/hosts/lv2_jack_host.c index 8044cbf..52b6aff 100644 --- a/hosts/lv2_jack_host.c +++ b/hosts/lv2_jack_host.c @@ -88,13 +88,14 @@ static const LV2_Feature uri_map_feature = { "http://lv2plug.in/ns/ext/uri-map", /** We don't support type 0 events, so the ref and unref functions just point to the same empty function. */ uint32_t event_ref_func(LV2_Event_Callback_Data callback_data, - LV2_Event* event) { - + LV2_Event* event) +{ + return 0; } static LV2_Event_Feature event_ref = { NULL, &event_ref_func, &event_ref_func }; static const LV2_Feature event_ref_feature = { "http://lv2plug.in/ns/ext/event", - &event_ref }; + &event_ref }; const LV2_Feature* features[3] = { &uri_map_feature, &event_ref_feature, NULL }; -- cgit v1.2.1