Commit 74528bb1 authored by yunlian@chromium.org's avatar yunlian@chromium.org

fix sign-compare warning.

BUG=chromium:373548
TEST=the warnings are gone.

Review URL: https://codereview.chromium.org/318833002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276555 0039d316-1c4b-4281-b951-d872f2087c98
parent a0e971ff
......@@ -533,7 +533,7 @@ VEAClient::VEAClient(const TestStream& test_stream,
// Calculate the number of frames in the input stream by dividing its length
// in bytes by frame size in bytes.
CHECK_EQ(test_stream_.input_file.length() % input_buffer_size_, 0)
CHECK_EQ(test_stream_.input_file.length() % input_buffer_size_, 0U)
<< "Stream byte size is not a product of calculated frame byte size";
num_frames_in_stream_ = test_stream_.input_file.length() / input_buffer_size_;
CHECK_GT(num_frames_in_stream_, 0UL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment