mirror of
https://github.com/reactos/wine.git
synced 2025-02-09 05:36:56 +00:00
wnaspi32: Remove some superfluous casts.
This commit is contained in:
parent
81f919fd37
commit
f4c2f2b0c4
@ -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…
x
Reference in New Issue
Block a user