comctl32: remove extraneous parentheses (LLVM/Clang)

Austin English austinenglish at gmail.com
Tue Apr 12 18:27:11 CDT 2011


-- 
-Austin
-------------- next part --------------
diff --git a/dlls/comctl32/syslink.c b/dlls/comctl32/syslink.c
index 9340fc6..573619e 100644
--- a/dlls/comctl32/syslink.c
+++ b/dlls/comctl32/syslink.c
@@ -529,7 +529,7 @@ static PDOC_ITEM SYSLINK_GetFocusLink (const SYSLINK_INFO *infoPtr, int *LinkId)
 
     while(Current != NULL)
     {
-        if((Current->Type == slLink))
+        if(Current->Type == slLink)
         {
             if(Current->u.Link.state & LIS_FOCUSED)
             {


More information about the wine-patches mailing list