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

Commit 764c197c authored by Mathias Agopian's avatar Mathias Agopian
Browse files

fix typo that broke all the builds

Bug: 7584338
Change-Id: Ieb8c27a544ac583af9aa1e0376e33a673d2d9673
parent 3e095b25
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.