Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3d9b69f5
Commit
3d9b69f5
authored
Oct 25, 2007
by
Dan Kegel
Committed by
Alexandre Julliard
Oct 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Avoid testing linecontrols if can't get line info.
parent
efebe8b2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
mixer.c
dlls/winmm/tests/mixer.c
+3
-1
No files found.
dlls/winmm/tests/mixer.c
View file @
3d9b69f5
...
...
@@ -436,7 +436,8 @@ static void mixer_test_deviceA(int device)
mmsys_error
(
rc
));
if
(
rc
==
MMSYSERR_NODRIVER
)
trace
(
" No Driver
\n
"
);
else
if
(
rc
==
MMSYSERR_NOERROR
&&
winetest_interactive
)
{
else
if
(
rc
==
MMSYSERR_NOERROR
)
{
if
(
winetest_interactive
)
{
trace
(
" %d:
\"
%s
\"
(%s) Destination=%d Source=%d
\n
"
,
d
,
mixerlineA
.
szShortName
,
mixerlineA
.
szName
,
mixerlineA
.
dwDestination
,
mixerlineA
.
dwSource
);
...
...
@@ -554,6 +555,7 @@ static void mixer_test_deviceA(int device)
}
}
}
}
rc
=
mixerClose
(
mix
);
ok
(
rc
==
MMSYSERR_NOERROR
,
"mixerClose: MMSYSERR_BADDEVICEID expected, got %s
\n
"
,
...
...
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