From a1411566afcb2865fcee1f6fb431436e0644d745 Mon Sep 17 00:00:00 2001 From: Jonathan Watt Date: Thu, 4 Dec 2014 18:23:54 -0800 Subject: [PATCH] Bug 1066713 follow-up - Fix C&P error to get the variable names right. --- layout/base/nsLayoutUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/base/nsLayoutUtils.cpp b/layout/base/nsLayoutUtils.cpp index 3ce6b7bd20ef..f10e164032f5 100644 --- a/layout/base/nsLayoutUtils.cpp +++ b/layout/base/nsLayoutUtils.cpp @@ -565,7 +565,7 @@ nsLayoutUtils::ComputeSuitableScaleForAnimation(nsIContent* aContent) if (maxScale.width == std::numeric_limits::min()) { // We didn't encounter a transform - aMaxScale = aMinScale = gfxSize(1.0, 1.0); + maxScale = minScale = gfxSize(1.0, 1.0); } return gfxSize(GetSuitableScale(maxScale.width, minScale.width),