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

Commit fb2e0b7e authored by Dan Stoza's avatar Dan Stoza Committed by Android Git Automerger
Browse files

am 800b41ab: libgui: Fix buffer age on 64-bit targets

* commit '800b41ab':
  libgui: Fix buffer age on 64-bit targets
parents 433eba21 800b41ab
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -347,7 +347,8 @@ status_t BufferQueueProducer::dequeueBuffer(int *outSlot,
                    mCore->mFrameCounter + 1 - mSlots[found].mFrameNumber;
        }

        BQ_LOGV("dequeueBuffer: setting buffer age to %llu", mCore->mBufferAge);
        BQ_LOGV("dequeueBuffer: setting buffer age to %" PRIu64,
                mCore->mBufferAge);

        if (CC_UNLIKELY(mSlots[found].mFence == NULL)) {
            BQ_LOGE("dequeueBuffer: about to return a NULL fence - "