libgui: Fix buffer age on 64-bit targets
Changes a %llu to a PRIu64 to fix compilation on 64-bit targets. Change-Id: I8ba982662dbe8ee2e1e47c4f6ce4bbdbe2020960
This commit is contained in:
parent
4afd8b67f9
commit
800b41ab84
@ -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 - "
|
||||
|
Loading…
Reference in New Issue
Block a user