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

Commit c5543320 authored by Ben Cheng's avatar Ben Cheng Committed by Android Git Automerger
Browse files

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

* commit '7acecec4':
  Fix signed vs unsigned comparison.
parents 89fe3ac1 7acecec4
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);
}