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

Commit c56cf74d authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Fix the format specifier in assert log statements" am: ddc10d84 am:...

Merge "Fix the format specifier in assert log statements" am: ddc10d84 am: 1ffb992d am: 7ab599b9

Change-Id: I2dff3d4a75f8f8f7c6f5ba3074f9324cd6307a3d
parents 78077743 7ab599b9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -651,12 +651,12 @@ void HalProxyCallback::postEvents(const std::vector<Event>& events, ScopedWakelo
    if (numWakeupEvents > 0) {
        ALOG_ASSERT(wakelock.isLocked(),
                    "Wakeup events posted while wakelock unlocked for subhal"
                    " w/ index %zu.",
                    " w/ index %" PRId32 ".",
                    mSubHalIndex);
    } else {
        ALOG_ASSERT(!wakelock.isLocked(),
                    "No Wakeup events posted but wakelock locked for subhal"
                    " w/ index %zu.",
                    " w/ index %" PRId32 ".",
                    mSubHalIndex);
    }
    mHalProxy->postEventsToMessageQueue(processedEvents, numWakeupEvents, std::move(wakelock));