Andrew Talbot : mapi32: Remove unneeded cast.

Alexandre Julliard julliard at winehq.org
Fri Jan 11 07:20:20 CST 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Thu Jan 10 22:11:20 2008 +0000

mapi32: Remove unneeded cast.

---

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

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-cvs mailing list