Commit ff2da8ec authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

vwin32.vxd: Remove superfluous pointer casts.

parent ce486bb9
......@@ -118,8 +118,8 @@ BOOL WINAPI VWIN32_DeviceIoControl(DWORD dwIoControlCode,
case VWIN32_DIOC_DOS_DRIVEINFO:
{
CONTEXT86 cxt;
DIOC_REGISTERS *pIn = (DIOC_REGISTERS *)lpvInBuffer;
DIOC_REGISTERS *pOut = (DIOC_REGISTERS *)lpvOutBuffer;
DIOC_REGISTERS *pIn = lpvInBuffer;
DIOC_REGISTERS *pOut = lpvOutBuffer;
BYTE intnum = 0;
TRACE( "Control '%s': "
......
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