mapi32: Remove unneeded cast.
This commit is contained in:
parent
c3f4ad58a1
commit
d6a3ee17ad
|
@ -1331,7 +1331,7 @@ ULONG WINAPI FBadProp(LPSPropValue lpProp)
|
||||||
return FBadRglpszW(lpProp->Value.MVszW.lppszW,
|
return FBadRglpszW(lpProp->Value.MVszW.lppszW,
|
||||||
lpProp->Value.MVszW.cValues);
|
lpProp->Value.MVszW.cValues);
|
||||||
case PT_MV_BINARY:
|
case PT_MV_BINARY:
|
||||||
return FBadEntryList((LPENTRYLIST)&lpProp->Value.MVbin);
|
return FBadEntryList(&lpProp->Value.MVbin);
|
||||||
}
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue