diff --git a/content/svg/content/src/nsSVGGraphicElement.cpp b/content/svg/content/src/nsSVGGraphicElement.cpp index cd33cf3903ed..28e74d46db4a 100644 --- a/content/svg/content/src/nsSVGGraphicElement.cpp +++ b/content/svg/content/src/nsSVGGraphicElement.cpp @@ -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;