From 802179520e2d464f87389e34699510927a4a0ab3 Mon Sep 17 00:00:00 2001 From: Stephen Sinclair Date: Wed, 30 Aug 2017 18:30:36 -0300 Subject: [PATCH] =?utf8?q?Fix=20`jackSilentError(const=20char*)=E2=80=99?= =?utf8?q?=20defined=20but=20not=20used?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- RtAudio.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RtAudio.cpp b/RtAudio.cpp index 00d63f0..f72c899 100644 --- a/RtAudio.cpp +++ b/RtAudio.cpp @@ -1944,7 +1944,9 @@ struct JackHandle { :client(0), drainCounter(0), internalDrain(false) { ports[0] = 0; ports[1] = 0; xrun[0] = false; xrun[1] = false; } }; +#if !defined(__RTAUDIO_DEBUG__) static void jackSilentError( const char * ) {}; +#endif RtApiJack :: RtApiJack() :shouldAutoconnect_(true) { -- 2.30.2