am 876e0e56: am 36f429d3: Fix typo which causes sensors to fail miserably

Merge commit '876e0e5646f3f062b5f81ead9ff42bfc1da5ffe1'

* commit '876e0e5646f3f062b5f81ead9ff42bfc1da5ffe1':
  Fix typo which causes sensors to fail miserably
This commit is contained in:
Mathias Agopian
2010-09-16 23:26:16 -07:00
committed by Android Git Automerger

View File

@@ -110,7 +110,7 @@ status_t SensorEventQueue::waitForEvent() const
}
} while (result != fd);
return result;
return (result == fd) ? status_t(NO_ERROR) : result;
}
status_t SensorEventQueue::wake() const