mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
wnaspi32: Remove some superfluous casts.
This commit is contained in:
parent
81f919fd37
commit
f4c2f2b0c4
1 changed files with 3 additions and 3 deletions
|
@ -292,8 +292,8 @@ WNASPI32_DoPosting( SRB_ExecSCSICmd *lpPRB, DWORD status )
|
|||
(*SRB_PostProc)(lpPRB);
|
||||
}
|
||||
else if (SRB_Flags & SRB_EVENT_NOTIFY) {
|
||||
TRACE("Setting event %p\n", (HANDLE)SRB_PostProc);
|
||||
SetEvent((HANDLE)SRB_PostProc);
|
||||
TRACE("Setting event %p\n", SRB_PostProc);
|
||||
SetEvent(SRB_PostProc);
|
||||
}
|
||||
}
|
||||
return SS_PENDING;
|
||||
|
@ -598,7 +598,7 @@ DWORD __cdecl GetASPI32DLLVersion(void)
|
|||
return (DWORD)1;
|
||||
#else
|
||||
FIXME("Please add SCSI support for your operating system, returning 0\n");
|
||||
return (DWORD)0;
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue