am 2f365509: Merge "Fix signed vs unsigned comparison."

* commit '2f365509eb8a3696feb8063ba8e17ebd12beb7ff':
  Fix signed vs unsigned comparison.
This commit is contained in:
Ben Cheng 2014-04-11 23:31:24 +00:00 committed by Android Git Automerger
commit 3c29e66eaa
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ TEST(liblog, max_payload) {
EXPECT_EQ(true, matches);
EXPECT_LE(sizeof(max_payload_buf), max_len);
EXPECT_LE(sizeof(max_payload_buf), static_cast<size_t>(max_len));
android_logger_list_close(logger_list);
}