Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1bafa521 authored by Ben Cheng's avatar Ben Cheng
Browse files

Fix signed vs unsigned comparison.

Change-Id: I4011607858f3a82acc04509c9f795f960496ed69
parent ba419940
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}