Fix for Mac-specific compilation issue in r13000
authorrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 9 Jan 2014 19:45:29 +0000 (19:45 +0000)
committerrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 9 Jan 2014 19:45:29 +0000 (19:45 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@13001 2bbb7eff-a529-9590-31e7-b0007b416f81

tests/PictureTest.cpp

index e50f74e..207e610 100644 (file)
@@ -35,7 +35,7 @@ static void make_bm(SkBitmap* bm, int w, int h, SkColor color, bool immutable) {
     }
 }
 
-void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) {
+static void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) {
     SkASSERT(w % 2 == 0);
     SkASSERT(h % 2 == 0);
     bm->setConfig(SkBitmap::kA8_Config, w, h);