converted "unsigned int" to "size_t" to address compiler failure
git-svn-id: http://skia.googlecode.com/svn/trunk@3815 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gm/samplerstress.cpp b/gm/samplerstress.cpp
index 64abeec..687c636 100644
--- a/gm/samplerstress.cpp
+++ b/gm/samplerstress.cpp
@@ -49,7 +49,7 @@
for (int y = 0; y < src.fBounds.height(); ++y) {
for (int x = 0; x < src.fBounds.width(); ++x) {
- SkASSERT(unsigned int(scanline - dst->fImage) < dstSize);
+ SkASSERT(size_t(scanline - dst->fImage) < dstSize);
scanline[x] = srcScanLine[x] && ((x+y) % 2) ? 0xFF : 0x00;
}
scanline += dst->fRowBytes;