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

Commit 9ebbaec7 authored by Mathias Agopian's avatar Mathias Agopian Committed by Android Git Automerger
Browse files

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
parents f5da5e0c 2ffb2479
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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