From 3d08cc27b5fc75952002a3629eb357ef78f68a8c Mon Sep 17 00:00:00 2001 From: Jeff Gilbert Date: Fri, 10 Jun 2016 18:05:40 -0700 Subject: [PATCH] Bug 1279657 - Reference declarations should have the & against the type. - r=jrmuizel MozReview-Commit-ID: 7RAd0TUJHfB --- gfx/gl/GLUploadHelpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/gl/GLUploadHelpers.cpp b/gfx/gl/GLUploadHelpers.cpp index 9c8040dd9540..b48a3d1882d9 100644 --- a/gfx/gl/GLUploadHelpers.cpp +++ b/gfx/gl/GLUploadHelpers.cpp @@ -52,7 +52,7 @@ NextPowerOfTwo(int aNumber) } static unsigned int -DataOffset(const IntPoint &aPoint, int32_t aStride, SurfaceFormat aFormat) +DataOffset(const IntPoint& aPoint, int32_t aStride, SurfaceFormat aFormat) { unsigned int data = aPoint.y * aStride; data += aPoint.x * BytesPerPixel(aFormat);