From 40197d7b3b347f05b299a930641dad131c853e01 Mon Sep 17 00:00:00 2001 From: "niklas.enbom@webrtc.org" Date: Mon, 26 Mar 2012 08:45:47 +0000 Subject: [PATCH] Fixing build issus on non-Win TBR: bjornv Review URL: https://webrtc-codereview.appspot.com/460005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1940 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/voice_engine/main/source/channel.cc | 4 ++-- src/voice_engine/main/source/output_mixer.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/voice_engine/main/source/channel.cc b/src/voice_engine/main/source/channel.cc index 37ad145c1..cd76607b4 100644 --- a/src/voice_engine/main/source/channel.cc +++ b/src/voice_engine/main/source/channel.cc @@ -3889,8 +3889,8 @@ int Channel::StartRecordingPlayout(const char* fileName, const WebRtc_UWord32 notificationTime(0); // Not supported in VoE CodecInst dummyCodec={100,"L16",16000,320,1,320000}; - if (codecInst != NULL && - (codecInst->channels < 1) || (codecInst->channels > 2)) + if ((codecInst != NULL) && + ((codecInst->channels < 1) || (codecInst->channels > 2))) { _engineStatisticsPtr->SetLastError( VE_BAD_ARGUMENT, kTraceError, diff --git a/src/voice_engine/main/source/output_mixer.cc b/src/voice_engine/main/source/output_mixer.cc index a2841b230..f00a0d15c 100644 --- a/src/voice_engine/main/source/output_mixer.cc +++ b/src/voice_engine/main/source/output_mixer.cc @@ -342,8 +342,8 @@ int OutputMixer::StartRecordingPlayout(const char* fileName, const WebRtc_UWord32 notificationTime(0); CodecInst dummyCodec={100,"L16",16000,320,1,320000}; - if (codecInst != NULL && - (codecInst->channels < 1) || (codecInst->channels > 2)) + if ((codecInst != NULL) && + ((codecInst->channels < 1) || (codecInst->channels > 2))) { _engineStatisticsPtr->SetLastError( VE_BAD_ARGUMENT, kTraceError,