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

Commit 3da3b843 authored by Michael Wright's avatar Michael Wright
Browse files

Fix type for temp variable

Change-Id: I8e2d229da326e5182692f94660336169fb249da7
parent bcbf97ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1851,7 +1851,7 @@ void SwitchInputMapper::processSwitch(int32_t switchCode, int32_t switchValue) {

void SwitchInputMapper::sync(nsecs_t when) {
    if (mUpdatedSwitchMask) {
        int32_t updatedSwitchValues = mSwitchValues & mUpdatedSwitchMask;
        uint32_t updatedSwitchValues = mSwitchValues & mUpdatedSwitchMask;
        NotifySwitchArgs args(when, 0, updatedSwitchValues, mUpdatedSwitchMask);
        getListener()->notifySwitch(&args);