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

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

am 764c197c: fix typo that broke all the builds

* commit '764c197c':
  fix typo that broke all the builds
parents 92c3a307 764c197c
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.