Index: src/codec/SkBmpRLECodec.cpp |
diff --git a/src/codec/SkBmpRLECodec.cpp b/src/codec/SkBmpRLECodec.cpp |
index e215095266ab26cb53b3f27b79f95293c6d535de..67e262a704cae19489f0424baff6fe73329cc3ce 100644 |
--- a/src/codec/SkBmpRLECodec.cpp |
+++ b/src/codec/SkBmpRLECodec.cpp |
@@ -55,7 +55,7 @@ SkCodec::Result SkBmpRLECodec::onGetPixels(const SkImageInfo& dstInfo, |
} |
// Perform the decode |
- uint32_t rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); |
+ int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); |
if (rows != dstInfo.height()) { |
// We set rowsDecoded equal to the height because the background has already |
// been filled. RLE encodings sometimes skip pixels, so we always start by |