app_server: fix x86_64 build.

This commit is contained in:
Jérôme Duval
2015-11-14 19:37:59 +01:00
parent 81768f44e7
commit ac7f52fc91
+6 -10
View File
@@ -173,16 +173,12 @@ AlphaMaskCache::_FindUncachedPreviousMasks(AlphaMask* mask, bool reference)
void void
AlphaMaskCache::_PrintAndResetStatistics() AlphaMaskCache::_PrintAndResetStatistics()
{ {
debug_printf("AlphaMaskCache statistics: size=%4ld bytes=%4ld lower=%4ld " debug_printf("AlphaMaskCache statistics: size=%" B_PRIuSIZE " bytes=%"
"total=%4ld too_large=%4ld replaced=%4ld hit=%4ld miss=%4ld\n", B_PRIuSIZE " lower=%4" B_PRIu32 " total=%" B_PRIuSIZE " too_large=%4"
fShapeMasks.size(), B_PRIu32 " replaced=%4" B_PRIu32 " hit=%4" B_PRIu32 " miss=%4" B_PRIu32
fCurrentCacheBytes, "\n", fShapeMasks.size(), fCurrentCacheBytes, fLowerMaskReferencedCount,
fLowerMaskReferencedCount, fShapeMasks.size() + fLowerMaskReferencedCount, fTooLargeMaskCount,
fShapeMasks.size() + fLowerMaskReferencedCount, fMasksReplacedCount, fHitCount, fMissCount);
fTooLargeMaskCount,
fMasksReplacedCount,
fHitCount,
fMissCount);
fTooLargeMaskCount = 0; fTooLargeMaskCount = 0;
fMasksReplacedCount = 0; fMasksReplacedCount = 0;
fHitCount = 0; fHitCount = 0;