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:
Dan Stoza 2015-04-28 14:20:04 -07:00
parent 4afd8b67f9
commit 800b41ab84
1 changed files with 2 additions and 1 deletions

View File

@ -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 - "