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

Commit 8f38108c 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 '876e0e5646f3f062b5f81ead9ff42bfc1da5ffe1'

* commit '876e0e5646f3f062b5f81ead9ff42bfc1da5ffe1':
  Fix typo which causes sensors to fail miserably
parents 41d4c59b 9ebbaec7
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