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

Merge commit '36f429d300be2550d7459b488dfc05b00ec59312' into gingerbread-plus-aosp

* commit '36f429d300be2550d7459b488dfc05b00ec59312':
  Fix typo which causes sensors to fail miserably
This commit is contained in:
Mathias Agopian
2010-09-16 22:16:02 -07:00
committed by Android Git Automerger

View File

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