diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-05-10 23:05:02 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-05-10 23:05:02 +0200 |
commit | bde3b591aa1d7a0bd55958cd1506732075b5b53c (patch) | |
tree | 8f1036d82438241a0b6470d2abe112a004933f47 | |
parent | 330935d914174f38d2a81c5b57e68a8ec405bbea (diff) | |
download | sherlock.lv2-bde3b591aa1d7a0bd55958cd1506732075b5b53c.tar.xz |
fix lv2_osc_symbol_get.
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | osc_inspector_nk.c | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1 +1 @@ -0.13.53 +0.13.71 diff --git a/osc_inspector_nk.c b/osc_inspector_nk.c index 6250b94..5373e44 100644 --- a/osc_inspector_nk.c +++ b/osc_inspector_nk.c @@ -182,9 +182,9 @@ _osc_message(plughandle_t *handle, struct nk_context *ctx, const LV2_Atom_Object case LV2_OSC_SYMBOL: { - const char *S; + LV2_URID S; lv2_osc_symbol_get(&handle->osc_urid, arg, &S); - _mem_printf(&mem, "S:%s", S); + _mem_printf(&mem, "S:%s", handle->unmap->unmap(handle->unmap->handle, S)); } break; case LV2_OSC_CHAR: { |