Michael Stefaniuc : gdi32: Remove useless casts to self.

Alexandre Julliard julliard at winehq.org
Mon Aug 12 18:51:08 CDT 2019


Module: wine
Branch: master
Commit: dccbd6a949de196820e3618db9fa5079b07ae313
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=dccbd6a949de196820e3618db9fa5079b07ae313

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Fri Aug  9 21:17:48 2019 +0200

gdi32: Remove useless casts to self.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/gdi32/path.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/gdi32/path.c b/dlls/gdi32/path.c
index a360778..d2d9ac9 100644
--- a/dlls/gdi32/path.c
+++ b/dlls/gdi32/path.c
@@ -461,8 +461,8 @@ static struct gdi_path *PATH_FlattenPath(const struct gdi_path *pPath)
 static void PATH_ScaleNormalizedPoint(FLOAT_POINT corners[], double x,
    double y, POINT *pPoint)
 {
-    pPoint->x=GDI_ROUND( (double)corners[0].x + (double)(corners[1].x-corners[0].x)*0.5*(x+1.0) );
-    pPoint->y=GDI_ROUND( (double)corners[0].y + (double)(corners[1].y-corners[0].y)*0.5*(y+1.0) );
+    pPoint->x = GDI_ROUND( corners[0].x + (corners[1].x-corners[0].x)*0.5*(x+1.0) );
+    pPoint->y = GDI_ROUND( corners[0].y + (corners[1].y-corners[0].y)*0.5*(y+1.0) );
 }
 
 /* PATH_NormalizePoint
@@ -474,8 +474,8 @@ static void PATH_NormalizePoint(FLOAT_POINT corners[],
    const FLOAT_POINT *pPoint,
    double *pX, double *pY)
 {
-    *pX=(double)(pPoint->x-corners[0].x)/(double)(corners[1].x-corners[0].x) * 2.0 - 1.0;
-    *pY=(double)(pPoint->y-corners[0].y)/(double)(corners[1].y-corners[0].y) * 2.0 - 1.0;
+    *pX = (pPoint->x-corners[0].x)/(corners[1].x-corners[0].x) * 2.0 - 1.0;
+    *pY = (pPoint->y-corners[0].y)/(corners[1].y-corners[0].y) * 2.0 - 1.0;
 }
 
 /* PATH_DoArcPart




More information about the wine-cvs mailing list