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

Commit a07aad18 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

Change-Id: Ie3b510a88b7ecdac194027d5761c0a9cc4a9a70b
parents 5ef31031 a1336cf0
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 {