aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkBitmap.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-24 14:20:00 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-24 14:20:00 +0000
commit5b5bba36dcbc69b0033c2acc9981734956394816 (patch)
tree3a7b1e5cb7590602130ec281bffa55efcdc333c6 /src/core/SkBitmap.cpp
parent56072f9eccd726c659c5422f2cb1966d3c79bf3c (diff)
Addressed xcode analysis complaints
Diffstat (limited to 'src/core/SkBitmap.cpp')
-rw-r--r--src/core/SkBitmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkBitmap.cpp b/src/core/SkBitmap.cpp
index 9dbf322b8e..59871f7e98 100644
--- a/src/core/SkBitmap.cpp
+++ b/src/core/SkBitmap.cpp
@@ -1162,7 +1162,7 @@ void SkBitmap::buildMipMap(bool forceRebuild) {
uint8_t* addr = (uint8_t*)mm->pixels();
int width = this->width();
int height = this->height();
- unsigned rowBytes = this->rowBytes();
+ unsigned rowBytes;
SkBitmap dstBM;
for (int i = 0; i < maxLevels; i++) {