From 967c4ad16131ccbcdf7b26b879d3feff955b978e Mon Sep 17 00:00:00 2001 From: Christopher Arndt Date: Thu, 6 Oct 2022 17:24:58 +0200 Subject: [PATCH] fix: missing comma in enum declaration Signed-off-by: Christopher Arndt --- jacket.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jacket.nim b/jacket.nim index 48e4297..159e5d1 100644 --- a/jacket.nim +++ b/jacket.nim @@ -56,7 +56,7 @@ type type JackStatus* {.size: sizeof(cint).} = enum - Success = 0x00 + Success = 0x00, Failure = 0x01, InvalidOption = 0x02, NameNotUnique = 0x04,