am 764c197c: fix typo that broke all the builds

* commit '764c197c6fc2bf10b038c33b320a4e95594d52d8':
  fix typo that broke all the builds
This commit is contained in:
Mathias Agopian 2012-11-19 17:04:44 -08:00 committed by Android Git Automerger
commit 594a8773c1

View File

@ -314,12 +314,9 @@ 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) {
found = i;
}
if ((found < 0) ||
mSlots[i].mFrameNumber < mSlots[found].mFrameNumber) {
found = i;
}
}
}