diff options
author | wjmaclean@chromium.org <wjmaclean@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2010-12-22 17:43:58 +0000 |
---|---|---|
committer | wjmaclean@chromium.org <wjmaclean@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2010-12-22 17:43:58 +0000 |
commit | 084547081ce17ea5b49c68e20cae6f3eb53d4dd6 (patch) | |
tree | 68b736834f486df40fb6f1eeeca10bb2f7a6afb7 /src/utils | |
parent | 0bde180bf12207f69685ed16f3fba37ef496b448 (diff) |
Fixed tab character.
git-svn-id: http://skia.googlecode.com/svn/trunk@647 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/win/SkOSWindow_Win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/win/SkOSWindow_Win.cpp b/src/utils/win/SkOSWindow_Win.cpp index d278871da2..7694c36f7e 100644 --- a/src/utils/win/SkOSWindow_Win.cpp +++ b/src/utils/win/SkOSWindow_Win.cpp @@ -872,7 +872,7 @@ void SkOSWindow::doPaint(void* ctx) { //
// Do the SetDIBitsToDevice.
//
- SkASSERT(bitmap.width() * bitmap.bytesPerPixel() == bitmap.rowBytes());
+ SkASSERT(bitmap.width() * bitmap.bytesPerPixel() == bitmap.rowBytes());
bitmap.lockPixels();
int iRet = SetDIBitsToDevice(hdc,
0, 0,
|