Chromium Code Reviews| Index: gm/typeface.cpp |
| diff --git a/gm/typeface.cpp b/gm/typeface.cpp |
| index 9754e9788a2ea4bc480cbc76165bb11fd0f36afc..f2c56a591ed14a0ed5ea0277d7698faf8c87f817 100644 |
| --- a/gm/typeface.cpp |
| +++ b/gm/typeface.cpp |
| @@ -50,7 +50,7 @@ protected: |
| SkPaint paint; |
| paint.setAntiAlias(true); |
| - for (size_t i = 0; i < SK_ARRAY_COUNT(gFaces); i++) { |
| + for (int i = 0; i < (int)SK_ARRAY_COUNT(gFaces); i++) { |
| this->drawWithFace(text, i, y, paint, canvas); |
| } |
| // Now go backwards |