Module: wine Branch: master Commit: 7e917a0f9dbc69dc19b000a10e85dd1c0936fb49 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7e917a0f9dbc69dc19b000a10e... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Sun Jul 6 13:00:58 2008 +0100 winedos: Remove unneeded address-of operator from function name. --- dlls/winedos/dosaspi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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));