winedos: Remove unneeded address-of operator from function name

Andrew Talbot andrew.talbot at talbotville.com
Sun Jul 6 07:00:58 CDT 2008


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

diff --git a/dlls/winedos/dosaspi.c b/dlls/winedos/dosaspi.c
index 28089a3..988e776 100644
--- a/dlls/winedos/dosaspi.c
+++ b/dlls/winedos/dosaspi.c
@@ -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));



More information about the wine-patches mailing list