fix warning related to && and || and parens

git-svn-id: http://skia.googlecode.com/svn/trunk@9597 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2013-06-13 20:48:09 +00:00
parent a25c94e50a
commit 732c5d516a

View File

@ -783,7 +783,7 @@ void SkView::validate() const {
} else {
bool nextNull = NULL == fNextSibling;
bool prevNull = NULL == fNextSibling;
SkASSERT(nextNull && prevNull || !nextNull && !prevNull);
SkASSERT(nextNull == prevNull);
}
}