Merge "Fix a compile warning in the Surface class."

This commit is contained in:
Jamie Gennis 2010-11-11 13:50:43 -08:00 committed by Android (Google) Code Review
commit 044358d11c

View File

@ -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;