Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f4c2f2b0
Commit
f4c2f2b0
authored
Dec 05, 2008
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wnaspi32: Remove some superfluous casts.
parent
81f919fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
winaspi32.c
dlls/wnaspi32/winaspi32.c
+3
-3
No files found.
dlls/wnaspi32/winaspi32.c
View file @
f4c2f2b0
...
...
@@ -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
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment