Index: ppapi/tests/test_buffer.cc |
=================================================================== |
--- ppapi/tests/test_buffer.cc (revision 67614) |
+++ ppapi/tests/test_buffer.cc (working copy) |
@@ -43,7 +43,7 @@ |
// Now check that everything is 0. |
unsigned char* bytes = static_cast<unsigned char *>(buffer.data()); |
- for (int index = 0; index < buffer.size(); index++) { |
+ for (uint32_t index = 0; index < buffer.size(); index++) { |
if (bytes[index] != 0) |
return "Buffer isn't entirely zero"; |
} |