ole32: remove extraneous parentheses (LLVM/Clang)
Austin English
austinenglish at gmail.com
Tue Apr 12 17:42:36 CDT 2011
--
-Austin
-------------- next part --------------
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-patches
mailing list