mapi32: Remove unneeded cast

Andrew Talbot andrew.talbot at talbotville.com
Thu Jan 10 16:11:20 CST 2008


Changelog:
    mapi32: Remove unneeded cast.

diff --git a/dlls/mapi32/prop.c b/dlls/mapi32/prop.c
index e58df4d..18e8013 100644
--- a/dlls/mapi32/prop.c
+++ b/dlls/mapi32/prop.c
@@ -1331,7 +1331,7 @@ ULONG WINAPI FBadProp(LPSPropValue lpProp)
         return FBadRglpszW(lpProp->Value.MVszW.lppszW,
                            lpProp->Value.MVszW.cValues);
     case PT_MV_BINARY:
-        return FBadEntryList((LPENTRYLIST)&lpProp->Value.MVbin);
+        return FBadEntryList(&lpProp->Value.MVbin);
     }
     return FALSE;
 }



More information about the wine-patches mailing list