Fix NULL as SkColor warning on clang.

git-svn-id: http://skia.googlecode.com/svn/trunk@3582 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2012-04-03 13:25:12 +00:00
parent 2858b31d4b
commit 730ca3b5d9

View File

@ -65,7 +65,7 @@ enum {
#define DO_DEFERRED_CLEAR \
do { \
if (fNeedClear) { \
this->clear(NULL); \
this->clear(0x0); \
fNeedClear = false; \
} \
} while (false) \