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

Commit fb600d60 authored by Adam Lesinski's avatar Adam Lesinski
Browse files

Fix build break in log statement

For logging purposes, a uint32_t was being converted into
a void pointer, which on certain systems would be a conversion
to a different size.

Change-Id: I90af69ab975d84c9c8cbb1cce94ff4e9cc6edcf2
parent b9db146d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ const ResTable_entry* TypeVariant::iterator::operator*() const {
    }

    if ((entryOffset & 0x3) != 0) {
        ALOGE("Index %u points to entry with unaligned offset %p", mIndex, (void*) entryOffset);
        ALOGE("Index %u points to entry with unaligned offset 0x%08x", mIndex, entryOffset);
        return NULL;
    }