Chromium Code Reviews| Index: tests/RecorderTest.cpp |
| diff --git a/tests/RecorderTest.cpp b/tests/RecorderTest.cpp |
| index c41d634b440814fca69ea336ef77b34d109a8923..b4bc58dddde0333d8c081d4fc71bdb5dc026fb74 100644 |
| --- a/tests/RecorderTest.cpp |
| +++ b/tests/RecorderTest.cpp |
| @@ -30,7 +30,7 @@ public: |
| int count() const { return fHistogram[T::kType]; } |
| void apply(const SkRecord& record) { |
| - for (unsigned i = 0; i < record.count(); i++) { |
| + for (int i = 0; i < record.count(); i++) { |
| record.visit<void>(i, *this); |
| } |
| } |