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

Commit 00030e9e authored by Mathias Agopian's avatar Mathias Agopian Committed by Android Git Automerger
Browse files

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

Merge commit '876e0e56'

* commit '876e0e56':
  Fix typo which causes sensors to fail miserably
parents 14769a86 876e0e56
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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