Bug 774077 - Fix Clang warning in nsSVGGraphicElement.cpp. r=dholbert.

--HG--
extra : rebase_source : 20a6001c421008c19d6000541077c78819520393
This commit is contained in:
Jonathan Watt 2012-07-18 13:47:40 -04:00
Родитель 92c3dfd59b
Коммит 60ec6a4ffb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -237,7 +237,7 @@ void
nsSVGGraphicElement::SetAnimateMotionTransform(const gfxMatrix* aMatrix)
{
if ((!aMatrix && !mAnimateMotionTransform) ||
aMatrix && mAnimateMotionTransform && *aMatrix == *mAnimateMotionTransform) {
(aMatrix && mAnimateMotionTransform && *aMatrix == *mAnimateMotionTransform)) {
return;
}
mAnimateMotionTransform = aMatrix ? new gfxMatrix(*aMatrix) : nsnull;