winedos: Remove unneeded address-of operator from function name.

This commit is contained in:
Andrew Talbot 2008-07-06 13:00:58 +01:00 committed by Alexandre Julliard
parent 6ced8a3f55
commit 7e917a0f9d
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ DWORD ASPI_SendASPIDOSCommand(DWORD ptrSRB)
memcpy(&lpPRB->CDBByte[0],&lpSRB16->cmd.CDBByte[0],lpSRB16->cmd.SRB_CDBLen);
/* Set post proc to our post proc */
lpPRB->SRB_PostProc = &DOSASPI_PostProc;
lpPRB->SRB_PostProc = DOSASPI_PostProc;
/* Stick the DWORD after all the sense info */
memcpy(lpPRB->SenseArea + lpPRB->SRB_SenseLen,&ptrSRB,sizeof(DWORD));