Module: wine Branch: master Commit: 8a7cc0687c977415e25d5f4c1b36c8c7a810c4eb URL: http://source.winehq.org/git/wine.git/?a=commit;h=8a7cc0687c977415e25d5f4c1b... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Fri Sep 14 12:29:36 2012 +0200 gdi.exe16: Don't bother using the register storage class specifier. --- dlls/gdi.exe16/gdi.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/gdi.exe16/gdi.c b/dlls/gdi.exe16/gdi.c index 45c2c78..ef460b3 100644 --- a/dlls/gdi.exe16/gdi.c +++ b/dlls/gdi.exe16/gdi.c @@ -788,7 +788,7 @@ BOOL16 WINAPI StretchBlt16( HDC16 hdcDst, INT16 xDst, INT16 yDst, */ BOOL16 WINAPI Polygon16( HDC16 hdc, const POINT16* pt, INT16 count ) { - register int i; + int i; BOOL ret; LPPOINT pt32 = HeapAlloc( GetProcessHeap(), 0, count*sizeof(POINT) ); @@ -809,7 +809,7 @@ BOOL16 WINAPI Polygon16( HDC16 hdc, const POINT16* pt, INT16 count ) */ BOOL16 WINAPI Polyline16( HDC16 hdc, const POINT16* pt, INT16 count ) { - register int i; + int i; BOOL16 ret; LPPOINT pt32 = HeapAlloc( GetProcessHeap(), 0, count*sizeof(POINT) );