mapi32: Remove unneeded cast.

This commit is contained in:
Andrew Talbot 2008-01-10 22:11:20 +00:00 committed by Alexandre Julliard
parent c3f4ad58a1
commit d6a3ee17ad

View file

@ -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;
}