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
2af5528a
Commit
2af5528a
authored
Apr 24, 2010
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Apr 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Remove variable devID which is not really used from MMDRV_Message.
parent
4e7fe582
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
lolvldrv.c
dlls/winmm/lolvldrv.c
+0
-3
No files found.
dlls/winmm/lolvldrv.c
View file @
2af5528a
...
...
@@ -93,7 +93,6 @@ DWORD MMDRV_Message(LPWINE_MLD mld, UINT wMsg, DWORD_PTR dwParam1,
DWORD
ret
;
WINE_MM_DRIVER_PART
*
part
;
WINE_LLTYPE
*
llType
=
&
llTypes
[
mld
->
type
];
int
devID
;
TRACE
(
"(%s %u %u 0x%08lx 0x%08lx 0x%08lx)
\n
"
,
llTypes
[
mld
->
type
].
typestr
,
mld
->
uDeviceID
,
wMsg
,
...
...
@@ -105,13 +104,11 @@ DWORD MMDRV_Message(LPWINE_MLD mld, UINT wMsg, DWORD_PTR dwParam1,
llTypes
[
mld
->
type
].
typestr
);
return
MMSYSERR_BADDEVICEID
;
}
devID
=
-
1
;
}
else
{
if
(
mld
->
uDeviceID
>=
llType
->
wMaxId
)
{
WARN
(
"uDev(%u) requested >= max (%d)
\n
"
,
mld
->
uDeviceID
,
llType
->
wMaxId
);
return
MMSYSERR_BADDEVICEID
;
}
devID
=
mld
->
uDeviceID
;
}
lpDrv
=
&
MMDrvs
[
mld
->
mmdIndex
];
...
...
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