Commit f824030a authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 8a7cc068
...@@ -2616,9 +2616,9 @@ static void REGION_loadAET(EdgeTableEntry *AET, EdgeTableEntry *ETEs) ...@@ -2616,9 +2616,9 @@ static void REGION_loadAET(EdgeTableEntry *AET, EdgeTableEntry *ETEs)
*/ */
static void REGION_computeWAET(EdgeTableEntry *AET) static void REGION_computeWAET(EdgeTableEntry *AET)
{ {
register EdgeTableEntry *pWETE; EdgeTableEntry *pWETE;
register int inside = 1; int inside = 1;
register int isInside = 0; int isInside = 0;
AET->nextWETE = NULL; AET->nextWETE = NULL;
pWETE = AET; pWETE = AET;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment