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

* commit '41943dd027740873180bea8d30b65d71f0077654':
  Fix type for temp variable
This commit is contained in:
Michael Wright 2014-09-04 22:23:17 +00:00 committed by Android Git Automerger
commit 22371776ff
1 changed files with 1 additions and 1 deletions

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