diff options
| author | 2015-03-31 19:24:46 +0000 | |
|---|---|---|
| committer | 2015-03-31 19:24:47 +0000 | |
| commit | e478f460feb1ad6edcd170bed3e4e7a63abb143c (patch) | |
| tree | cf5a43ab6ce873ed9f26d25be76d12d6640f5ef1 /libs/hwui/JankTracker.cpp | |
| parent | 1e3e6e99c6b45fe2da4777831248592a633b03dc (diff) | |
| parent | 98fa0a322e6bf4f6b543487c820955d8598193b5 (diff) | |
Merge "Fix warn log format"
Diffstat (limited to 'libs/hwui/JankTracker.cpp')
| -rw-r--r-- | libs/hwui/JankTracker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/JankTracker.cpp b/libs/hwui/JankTracker.cpp index 48f5dc125a82..65be9e19a56a 100644 --- a/libs/hwui/JankTracker.cpp +++ b/libs/hwui/JankTracker.cpp @@ -138,7 +138,7 @@ void JankTracker::switchStorageToAshmem(int ashmemfd) { int regionSize = ashmem_get_size_region(ashmemfd); if (regionSize < static_cast<int>(sizeof(ProfileData))) { ALOGW("Ashmem region is too small! Received %d, required %u", - regionSize, sizeof(ProfileData)); + regionSize, static_cast<unsigned int>(sizeof(ProfileData))); return; } ProfileData* newData = reinterpret_cast<ProfileData*>( |