diff options
Diffstat (limited to 'plugins/eg-sampler.lv2')
-rw-r--r-- | plugins/eg-sampler.lv2/sampler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c index 341f412..d4d2aa9 100644 --- a/plugins/eg-sampler.lv2/sampler.c +++ b/plugins/eg-sampler.lv2/sampler.c @@ -189,7 +189,7 @@ work(LV2_Handle instance, Sample* sample = load_sample(&self->logger, path); if (sample) { // Send new sample to run() to be applied - respond(handle, sizeof(sample), &sample); + respond(handle, sizeof(Sample*), &sample); } } |