aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv_console.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-24 19:00:43 +0200
committerDavid Robillard <d@drobilla.net>2018-09-24 19:08:41 +0200
commit46fbd9b6f9868dcc0770d1378e7654635900c196 (patch)
treeb1489b914cc61e302d853223e829d821e742dbd9 /src/jalv_console.c
parente9d44aaf8285901f2f95daf7eba7d08f72cdcc53 (diff)
downloadjalv-46fbd9b6f9868dcc0770d1378e7654635900c196.tar.gz
jalv-46fbd9b6f9868dcc0770d1378e7654635900c196.tar.bz2
jalv-46fbd9b6f9868dcc0770d1378e7654635900c196.zip
Fix some unnecessary const casts
Diffstat (limited to 'src/jalv_console.c')
-rw-r--r--src/jalv_console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jalv_console.c b/src/jalv_console.c
index 8ab7739..fb99a60 100644
--- a/src/jalv_console.c
+++ b/src/jalv_console.c
@@ -237,7 +237,7 @@ jalv_run_custom_ui(Jalv* jalv)
jalv_ui_instantiate(jalv, jalv_native_ui_type(), NULL);
idle_iface = (const LV2UI_Idle_Interface*)
suil_instance_extension_data(jalv->ui_instance, LV2_UI__idleInterface);
- show_iface = (LV2UI_Show_Interface*)
+ show_iface = (const LV2UI_Show_Interface*)
suil_instance_extension_data(jalv->ui_instance, LV2_UI__showInterface);
}