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

Commit e9ebae24 authored by Jamie Gennis's avatar Jamie Gennis
Browse files

Fix a compile warning in the Surface class.

Change-Id: Id744e71d2cd23c287925a5090e13a6d9908cdd99
parent 5d9a8d6e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1029,7 +1029,7 @@ int Surface::getBufferIndex(const sp<GraphicBuffer>& buffer) const
        // one of the buffers for which we do know the index.  This can happen
        // e.g. if GraphicBuffer is used to wrap an android_native_buffer_t that
        // was dequeued from an ANativeWindow.
        for (int i = 0; i < mBuffers.size(); i++) {
        for (size_t i = 0; i < mBuffers.size(); i++) {
            if (buffer->handle == mBuffers[i]->handle) {
                idx = mBuffers[i]->getIndex();
                break;