Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e478f460 authored by John Reck's avatar John Reck Committed by Android (Google) Code Review
Browse files

Merge "Fix warn log format"

parents 1e3e6e99 98fa0a32
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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*>(