Index: third_party/WebKit/WebCore/platform/graphics/FloatPoint.cpp |
=================================================================== |
--- third_party/WebKit/WebCore/platform/graphics/FloatPoint.cpp (revision 9391) |
+++ third_party/WebKit/WebCore/platform/graphics/FloatPoint.cpp (working copy) |
@@ -40,7 +40,7 @@ |
FloatPoint FloatPoint::matrixTransform(const TransformationMatrix& transform) const |
{ |
double newX, newY; |
- transform.map(static_cast<double>(m_x), static_cast<double>(m_y), &newX, &newY); |
+ transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); |
return narrowPrecision(newX, newY); |
} |