Fixing Release compilation errors

Review URL: http://webrtc-codereview.appspot.com/267026

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1000 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org
2011-11-23 12:20:35 +00:00
parent 89ab652250
commit 543c3eaa46
38 changed files with 221 additions and 171 deletions

View File

@ -9,14 +9,14 @@
*/
#include "utility.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "audio_coding_module.h"
#include "common_types.h"
#include "gtest/gtest.h"
#define NUM_CODECS_WITH_FIXED_PAYLOAD_TYPE 13
@ -128,7 +128,7 @@ ChooseCodec(
do
{
printf("\nChoose a codec [0]: ");
fgets(myStr, 10, stdin);
EXPECT_TRUE(fgets(myStr, 10, stdin) != NULL);
codecID = atoi(myStr);
if((codecID < 0) || (codecID >= noCodec))
{