From 6a78d8d53543b70eda94f07f8f6f6a2d1efab4a0 Mon Sep 17 00:00:00 2001 From: firewall1110 <57725851+firewall1110@users.noreply.github.com> Date: Sat, 31 Oct 2020 02:41:13 +0200 Subject: [PATCH] An extra set of parenthese to fix warnings/errors (#5754) --- src/core/audio/AudioSoundIo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/audio/AudioSoundIo.cpp b/src/core/audio/AudioSoundIo.cpp index b2be4884f..34deec1d0 100644 --- a/src/core/audio/AudioSoundIo.cpp +++ b/src/core/audio/AudioSoundIo.cpp @@ -250,7 +250,7 @@ void AudioSoundIo::stopProcessing() m_stopped = true; if (m_outstream) { - if (err = soundio_outstream_pause(m_outstream, true)) + if ((err = soundio_outstream_pause(m_outstream, true))) { fprintf(stderr, "AudioSoundIo::stopProcessing() :: pausing result error: %s\n",