aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-27 00:17:35 +0000
committerDavid Robillard <d@drobilla.net>2012-03-27 00:17:35 +0000
commit4f93a2176809dab5792eca26f59f908ee1aac793 (patch)
tree474a28263eae5d01d6e623daee1cc458f9db5acb /plugins/eg-sampler.lv2
parent882cb0ae306d8a26699a1c9224640cc8cf8971a3 (diff)
downloadlv2-4f93a2176809dab5792eca26f59f908ee1aac793.tar.xz
Add end_run hook to worker interface.
Diffstat (limited to 'plugins/eg-sampler.lv2')
-rw-r--r--plugins/eg-sampler.lv2/sampler.c2
1 files changed, 1 insertions, 1 deletions
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)) {