Module: wine Branch: master Commit: e4351708d5579d6590e4e5a384b9cdb2073b48f6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e4351708d5579d6590e4e5a384...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Wed Dec 5 22:42:32 2012 +0000
gdiplus: Remove unneeded address-of operator from array name.
---
dlls/gdiplus/graphics.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index 8cec80d..e5678a7 100644 --- a/dlls/gdiplus/graphics.c +++ b/dlls/gdiplus/graphics.c @@ -465,7 +465,7 @@ static GpStatus alpha_blend_pixels_hrgn(GpGraphics *graphics, INT dst_x, INT dst
GetRegionData(hrgn, size, rgndata);
- rects = (RECT*)&rgndata->Buffer; + rects = (RECT*)rgndata->Buffer;
for (i=0; stat == Ok && i<rgndata->rdh.nCount; i++) {