Fix build error introduced by r8864.

BUG=4323
TBR=pbos@webrtc.org
R=pbos@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/43969004

Cr-Commit-Position: refs/heads/master@{#8865}
This commit is contained in:
Stefan Holmer 2015-03-26 11:18:42 +01:00
parent e590416722
commit c79f7edd4e

View File

@ -516,7 +516,7 @@ void ViEAutoTest::ViECodecAPITest() {
EXPECT_EQ(0, codec->GetSendCodec(video_channel, video_codec)); EXPECT_EQ(0, codec->GetSendCodec(video_channel, video_codec));
// We don't allow allocated start bitrate to be decreased via SetSendCodec, // We don't allow allocated start bitrate to be decreased via SetSendCodec,
// and the default bitrate available in the allocator is 300. // and the default bitrate available in the allocator is 300.
EXPECT_EQ(300, video_codec.startBitrate); EXPECT_EQ(300u, video_codec.startBitrate);
memset(&video_codec, 0, sizeof(video_codec)); memset(&video_codec, 0, sizeof(video_codec));
EXPECT_EQ(0, codec->GetSendCodec(video_channel, video_codec)); EXPECT_EQ(0, codec->GetSendCodec(video_channel, video_codec));