Fix signed vs unsigned comparison.

Change-Id: I4011607858f3a82acc04509c9f795f960496ed69
This commit is contained in:
Ben Cheng 2014-04-11 16:19:30 -07:00
parent ba419940f7
commit 1bafa52172

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