Minor typo and whitespace fixes
This commit is contained in:
parent
64b815dab5
commit
c8ddbb2cf2
|
@ -6,7 +6,7 @@ var status: cint
|
|||
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
|
||||
|
||||
proc errorCb(msg: cstring) {.cdecl.} =
|
||||
# Suppress verbose JACK error messges when server is not available by
|
||||
# Suppress verbose JACK error messages when server is not available by
|
||||
# default. Pass ``lvlAll`` when creating the logger to enable them.
|
||||
debug "JACK error: " & $msg
|
||||
|
||||
|
|
|
@ -48,4 +48,4 @@ jclient.onShutdown(shutdownCb, nil)
|
|||
while not exitSignalled:
|
||||
sleep(50)
|
||||
|
||||
cleanup()
|
||||
cleanup()
|
||||
|
|
|
@ -15,6 +15,7 @@ proc getJackLibName: string =
|
|||
result = "libjack.so.0"
|
||||
|
||||
{.push dynlib: getJackLibName().}
|
||||
|
||||
# ------------------------------ Constants --------------------------------
|
||||
|
||||
const
|
||||
|
|
Loading…
Reference in New Issue