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

Commit e1cee843 authored by Alex Vakulenko's avatar Alex Vakulenko Committed by android-build-merger
Browse files

libbufferhub: Fix compiler warning with printf format mismatch am: a1336cf0

am: a07aad18

Change-Id: I44ad9add24b830be284b34f3efb5c72f025f963e
parents 1e90b4e5 a07aad18
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ void BufferHubQueue::HandleBufferEvent(size_t slot, const epoll_event& event) {
    ALOGW(
        "Receives EPOLLHUP at slot: %zu, buffer event fd: %d, EPOLLHUP "
        "pending: %d",
        slot, buffer->event_fd(), epollhup_pending_[slot]);
        slot, buffer->event_fd(), int{epollhup_pending_[slot]});
    if (epollhup_pending_[slot]) {
      epollhup_pending_[slot] = false;
    } else {