am cbe7544a: am 7563a601: am 3816305b: Merge "Address additional warnings found by GCC 4.9."

* commit 'cbe7544a3e848872def9cbf67110c78aa21d8ab1':
  Address additional warnings found by GCC 4.9.
This commit is contained in:
Ben Cheng 2014-05-20 18:22:55 +00:00 committed by Android Git Automerger
commit aceba829f1
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ TEST(liblog, too_big_payload) {
EXPECT_LE(LOGGER_ENTRY_MAX_PAYLOAD - sizeof(big_payload_tag),
static_cast<size_t>(max_len));
EXPECT_EQ(ret, max_len + sizeof(big_payload_tag));
EXPECT_EQ(ret, max_len + static_cast<ssize_t>(sizeof(big_payload_tag)));
}
TEST(liblog, dual_reader) {