aboutsummaryrefslogtreecommitdiffstats
path: root/src/worker.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-25 03:24:33 +0000
committerDavid Robillard <d@drobilla.net>2013-12-25 03:24:33 +0000
commitd8f7e5c92f7e03bfd28cb137ce40536f9f36818f (patch)
treed938636c7cf27ff5b14d8b7121461f3e59c3ba06 /src/worker.c
parent280527ada49e4763707ab861590ec30b5e57c854 (diff)
downloadjalv-d8f7e5c92f7e03bfd28cb137ce40536f9f36818f.tar.gz
jalv-d8f7e5c92f7e03bfd28cb137ce40536f9f36818f.tar.bz2
jalv-d8f7e5c92f7e03bfd28cb137ce40536f9f36818f.zip
Fix more const-correctness violations.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5196 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/worker.c')
-rw-r--r--src/worker.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/worker.c b/src/worker.c
index d958605..cba1e64 100644
--- a/src/worker.c
+++ b/src/worker.c
@@ -59,7 +59,9 @@ worker_func(void* data)
}
void
-jalv_worker_init(Jalv* jalv, JalvWorker* worker, LV2_Worker_Interface* iface)
+jalv_worker_init(Jalv* jalv,
+ JalvWorker* worker,
+ const LV2_Worker_Interface* iface)
{
worker->iface = iface;
zix_thread_create(&worker->thread, 4096, worker_func, jalv);