gdi32: Don't bother using the register storage class specifier.

This commit is contained in:
Michael Stefaniuc 2012-09-14 12:37:06 +02:00 committed by Alexandre Julliard
parent 8a7cc0687c
commit f824030a49
1 changed files with 3 additions and 3 deletions

View File

@ -2616,9 +2616,9 @@ static void REGION_loadAET(EdgeTableEntry *AET, EdgeTableEntry *ETEs)
*/
static void REGION_computeWAET(EdgeTableEntry *AET)
{
register EdgeTableEntry *pWETE;
register int inside = 1;
register int isInside = 0;
EdgeTableEntry *pWETE;
int inside = 1;
int isInside = 0;
AET->nextWETE = NULL;
pWETE = AET;