vwin32.vxd: Remove superfluous pointer casts.

oldstable
Michael Stefaniuc 2009-02-16 09:53:59 +01:00 committed by Alexandre Julliard
parent ce486bb959
commit ff2da8ec00
1 changed files with 2 additions and 2 deletions

View File

@ -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': "