fix: missing comma in enum declaration

Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
Christopher Arndt 2022-10-06 17:24:58 +02:00
parent 86ce617f14
commit 967c4ad161
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ type
type type
JackStatus* {.size: sizeof(cint).} = enum JackStatus* {.size: sizeof(cint).} = enum
Success = 0x00 Success = 0x00,
Failure = 0x01, Failure = 0x01,
InvalidOption = 0x02, InvalidOption = 0x02,
NameNotUnique = 0x04, NameNotUnique = 0x04,