Build fix for printf with int64 and size_t
Change-Id: I642584cce7dd43e6d491a49228b0bce047d53354
This commit is contained in:
parent
fd9d183cd8
commit
258ee43fbc
@ -288,7 +288,7 @@ void HWComposer::vsync(int disp, int64_t timestamp) {
|
||||
// is a bug in the HWC implementation, but filter the extra events
|
||||
// out here so they don't cause havoc downstream.
|
||||
if (timestamp == mLastHwVSync[disp]) {
|
||||
ALOGW("Ignoring duplicate VSYNC event from HWC (t=%lld)",
|
||||
ALOGW("Ignoring duplicate VSYNC event from HWC (t=%" PRId64 ")",
|
||||
timestamp);
|
||||
return;
|
||||
}
|
||||
@ -631,7 +631,7 @@ status_t HWComposer::prepare() {
|
||||
disp.framebufferTarget->compositionType = HWC_FRAMEBUFFER_TARGET;
|
||||
}
|
||||
if (!disp.connected && disp.list != NULL) {
|
||||
ALOGW("WARNING: disp %d: connected, non-null list, layers=%d",
|
||||
ALOGW("WARNING: disp %zu: connected, non-null list, layers=%zu",
|
||||
i, disp.list->numHwLayers);
|
||||
}
|
||||
mLists[i] = disp.list;
|
||||
|
Loading…
Reference in New Issue
Block a user