From ef94acbd9e743e5546c866dcaffc3e2121ede42e Mon Sep 17 00:00:00 2001 From: Christopher Arndt Date: Sun, 25 Jan 2026 14:55:17 +0100 Subject: [PATCH] fix: use proper Nim identifier format for Lv2LibDescriptor Signed-off-by: Christopher Arndt --- src/nymph/core.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nymph/core.nim b/src/nymph/core.nim index d74c1e7..f41fe46 100644 --- a/src/nymph/core.nim +++ b/src/nymph/core.nim @@ -120,4 +120,4 @@ type lv2Descriptor* = proc(index: cuint): ptr Lv2Descriptor {.cdecl.} - lv2LibDescriptor* = proc(bundle_path: cstring, features: ptr UncheckedArray[ptr Lv2Feature]): LV2_Lib_Descriptor {.cdecl.} + lv2LibDescriptor* = proc(bundle_path: cstring, features: ptr UncheckedArray[ptr Lv2Feature]): Lv2LibDescriptor {.cdecl.}