Module: wine Branch: master Commit: 846ba03867c529e8d98fa15ca2847d36fc56f3b4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=846ba03867c529e8d98fa15ca2...
Author: Austin English austinenglish@gmail.com Date: Tue Apr 12 16:59:34 2011 -0500
winex11.drv: Remove extraneous parentheses (LLVM/Clang).
---
dlls/winex11.drv/graphics.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/winex11.drv/graphics.c b/dlls/winex11.drv/graphics.c index 8236759..ac5ea62 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;