diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-15 17:33:57 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-15 17:33:57 +0000 |
commit | b4a2855b66da0c1c9874f3a4928750abd95ec4b2 (patch) | |
tree | 127feba74801c04bb44f68f6931f3698c6ff700d | |
parent | 226d508539fb96292bad268084b633023500a3ef (diff) |
Fix build error
git-svn-id: http://skia.googlecode.com/svn/trunk@10086 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | tests/PathUtilsTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PathUtilsTest.cpp b/tests/PathUtilsTest.cpp index fd429de9b6..3dec43943e 100644 --- a/tests/PathUtilsTest.cpp +++ b/tests/PathUtilsTest.cpp @@ -148,7 +148,7 @@ static void TestPathUtils(skiatest::Reporter* reporter) { fillRandomBits( h * rowBytes, bin_bmp); // generate random bitmap // for each bitmap width, use subset of binary bitmap - for (uint i = 0; i < SK_ARRAY_COUNT(w); ++i) { + for (unsigned int i = 0; i < SK_ARRAY_COUNT(w); ++i) { // generate truth bitmap SkBitmap bmpTruth; bin2SkBitmap(bin_bmp, &bmpTruth, h, w[i], rowBytes); |