am 9e24c319: Merge "Fix type for temp variable" into lmp-dev

* commit '9e24c319c3c8395b6dbd57d4cc8e0c749bbbb82c':
  Fix type for temp variable
This commit is contained in:
Michael Wright 2014-09-04 22:09:07 +00:00 committed by Android Git Automerger
commit 41943dd027

View File

@ -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);