From 846ba03867c529e8d98fa15ca2847d36fc56f3b4 Mon Sep 17 00:00:00 2001 From: Austin English Date: Tue, 12 Apr 2011 16:59:34 -0500 Subject: [PATCH] winex11.drv: Remove extraneous parentheses (LLVM/Clang). --- dlls/winex11.drv/graphics.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/winex11.drv/graphics.c b/dlls/winex11.drv/graphics.c index 8236759e011..ac5ea623112 100644 --- a/dlls/winex11.drv/graphics.c +++ b/dlls/winex11.drv/graphics.c @@ -534,7 +534,7 @@ X11DRV_DrawArc( X11DRV_PDEVICE *physDev, INT left, INT top, INT right, if (!width) width = 1; if(physDev->pen.style == PS_NULL) width = 0; - if ((physDev->pen.style == PS_INSIDEFRAME)) + if (physDev->pen.style == PS_INSIDEFRAME) { if (2*width > (rc.right-rc.left)) width=(rc.right-rc.left + 1)/2; if (2*width > (rc.bottom-rc.top)) width=(rc.bottom-rc.top + 1)/2; @@ -709,7 +709,7 @@ X11DRV_Ellipse( X11DRV_PDEVICE *physDev, INT left, INT top, INT right, INT botto if (!width) width = 1; if(physDev->pen.style == PS_NULL) width = 0; - if ((physDev->pen.style == PS_INSIDEFRAME)) + if (physDev->pen.style == PS_INSIDEFRAME) { if (2*width > (rc.right-rc.left)) width=(rc.right-rc.left + 1)/2; if (2*width > (rc.bottom-rc.top)) width=(rc.bottom-rc.top + 1)/2; @@ -769,7 +769,7 @@ X11DRV_Rectangle(X11DRV_PDEVICE *physDev, INT left, INT top, INT right, INT bott if (!width) width = 1; if(physDev->pen.style == PS_NULL) width = 0; - if ((physDev->pen.style == PS_INSIDEFRAME)) + if (physDev->pen.style == PS_INSIDEFRAME) { if (2*width > (rc.right-rc.left)) width=(rc.right-rc.left + 1)/2; if (2*width > (rc.bottom-rc.top)) width=(rc.bottom-rc.top + 1)/2; @@ -850,7 +850,7 @@ X11DRV_RoundRect( X11DRV_PDEVICE *physDev, INT left, INT top, INT right, if (!width) width = 1; if(physDev->pen.style == PS_NULL) width = 0; - if ((physDev->pen.style == PS_INSIDEFRAME)) + if (physDev->pen.style == PS_INSIDEFRAME) { if (2*width > (rc.right-rc.left)) width=(rc.right-rc.left + 1)/2; if (2*width > (rc.bottom-rc.top)) width=(rc.bottom-rc.top + 1)/2; -- 2.11.4.GIT