diff options
author | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2010-05-18 21:23:30 +0000 |
---|---|---|
committer | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2010-05-18 21:23:30 +0000 |
commit | e89d3ec443563a77d0cf29f08c0d034b2a93ec18 (patch) | |
tree | d7eaf440ed24e6bd25c132886d3268cb9b0ccada /include/core | |
parent | 033e03cb191aff56e06e5d6aab917f60740dba63 (diff) |
Fix 64-bit Mac warnings/memory corruption
git-svn-id: http://skia.googlecode.com/svn/trunk@569 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkThread_platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkThread_platform.h b/include/core/SkThread_platform.h index 825b737554..c2d0348178 100644 --- a/include/core/SkThread_platform.h +++ b/include/core/SkThread_platform.h @@ -61,7 +61,7 @@ public: private: bool fIsGlobal; enum { - kStorageIntCount = 12 + kStorageIntCount = 64 }; uint32_t fStorage[kStorageIntCount]; }; |