Commit d6a3ee17 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

mapi32: Remove unneeded cast.

parent c3f4ad58
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment