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

Commit 663db283 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix signed/unsigned integer comparison warning"

parents 99618223 353a6f69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -408,7 +408,7 @@ void HardwareComposer::PostLayers() {
  }

  const bool is_frame_pending = IsFramePendingInDriver();
  const bool is_fence_pending = retire_fence_fds_.size() >
  const bool is_fence_pending = static_cast<int32_t>(retire_fence_fds_.size()) >
                                post_thread_config_.allowed_pending_fence_count;

  if (is_fence_pending || is_frame_pending) {