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

* commit '3c29e66eaa683fcd1412f618f9da1e7c2e2b52aa':
  Fix signed vs unsigned comparison.
This commit is contained in:
Ben Cheng 2014-04-11 23:34:59 +00:00 committed by Android Git Automerger
commit 7acecec433

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);
}