Austin English : ole32: Remove extraneous parentheses (LLVM/Clang).

Alexandre Julliard julliard at winehq.org
Wed Apr 13 10:49:28 CDT 2011


Module: wine
Branch: master
Commit: 85b5a869e8d0892731da130cead01219a327da58
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=85b5a869e8d0892731da130cead01219a327da58

Author: Austin English <austinenglish at gmail.com>
Date:   Tue Apr 12 17:42:36 2011 -0500

ole32: Remove extraneous parentheses (LLVM/Clang).

---

 dlls/ole32/compositemoniker.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ole32/compositemoniker.c b/dlls/ole32/compositemoniker.c
index f7d6ee6..4aa8b7f 100644
--- a/dlls/ole32/compositemoniker.c
+++ b/dlls/ole32/compositemoniker.c
@@ -841,7 +841,7 @@ CompositeMonikerImpl_CommonPrefixWith(IMoniker* iface, IMoniker* pmkOther,
 
     IMoniker_IsSystemMoniker(pmkOther,&mkSys);
 
-    if((mkSys==MKSYS_GENERICCOMPOSITE)){
+    if(mkSys==MKSYS_GENERICCOMPOSITE){
 
         IMoniker_Enum(iface,TRUE,&enumMoniker1);
         IMoniker_Enum(pmkOther,TRUE,&enumMoniker2);




More information about the wine-cvs mailing list