From 4f93a2176809dab5792eca26f59f908ee1aac793 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 27 Mar 2012 00:17:35 +0000 Subject: Add end_run hook to worker interface. --- plugins/eg-sampler.lv2/sampler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c index 229762e..baae81a 100644 --- a/plugins/eg-sampler.lv2/sampler.c +++ b/plugins/eg-sampler.lv2/sampler.c @@ -425,7 +425,7 @@ static const void* extension_data(const char* uri) { static const LV2_State_Interface state = { save, restore }; - static const LV2_Worker_Interface worker = { work, work_response }; + static const LV2_Worker_Interface worker = { work, work_response, NULL }; if (!strcmp(uri, LV2_STATE__Interface)) { return &state; } else if (!strcmp(uri, LV2_WORKER__Interface)) { -- cgit v1.2.1