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

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

am 594a8773: am 764c197c: fix typo that broke all the builds

* commit '594a8773':
  fix typo that broke all the builds
parents c763303e 594a8773
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -314,15 +314,12 @@ status_t BufferQueue::dequeueBuffer(int *outBuf, sp<Fence>& outFence,
                     * the consumer may still have pending reads of the
                     * buffers in flight.
                     */
                    if (found >= 0) {
                        bool isOlder = mSlots[i].mFrameNumber <
                                mSlots[found].mFrameNumber;
                        if (isOlder) {
                    if ((found < 0) ||
                            mSlots[i].mFrameNumber < mSlots[found].mFrameNumber) {
                        found = i;
                    }
                }
            }
            }

            // clients are not allowed to dequeue more than one buffer
            // if they didn't set a buffer count.