fix: missing comma in enum declaration
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
parent
86ce617f14
commit
967c4ad161
|
@ -56,7 +56,7 @@ type
|
|||
|
||||
type
|
||||
JackStatus* {.size: sizeof(cint).} = enum
|
||||
Success = 0x00
|
||||
Success = 0x00,
|
||||
Failure = 0x01,
|
||||
InvalidOption = 0x02,
|
||||
NameNotUnique = 0x04,
|
||||
|
|
Loading…
Reference in New Issue