gdi32: Fix copy-paste error (coverity).

This commit is contained in:
André Hentschel 2012-10-24 19:27:08 +02:00 committed by Alexandre Julliard
parent a8125d6efd
commit cf95218f08
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ EMFDRV_ArcChordPie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
if(bounds.left > xCentre) bounds.left = xCentre;
else if(bounds.right < xCentre) bounds.right = xCentre;
if(bounds.top > yCentre) bounds.top = yCentre;
else if(bounds.bottom < yCentre) bounds.right = yCentre;
else if(bounds.bottom < yCentre) bounds.bottom = yCentre;
}
if(!EMFDRV_WriteRecord( dev, &emr.emr ))
return FALSE;