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
f6fb9523
Commit
f6fb9523
authored
Feb 09, 2011
by
Austin English
Committed by
Alexandre Julliard
Feb 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound/tests: Make sure to use a return value (LLVM/Clang).
parent
273065ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
duplex.c
dlls/dsound/tests/duplex.c
+2
-1
No files found.
dlls/dsound/tests/duplex.c
View file @
f6fb9523
...
...
@@ -93,8 +93,9 @@ static void IDirectSoundFullDuplex_test(LPDIRECTSOUNDFULLDUPLEX dsfdo,
ok
(
rc
==
DS_OK
,
"IDirectSoundFullDuplex_QueryInterface(IID_IDirectSoundFullDuplex) "
"failed: %08x
\n
"
,
rc
);
if
(
rc
==
DS_OK
)
{
ok
(
dsfdo
==
dsfd
,
"different interfaces
\n
"
);
ok
(
dsfdo
==
dsfd
,
"different interfaces
\n
"
);
ref
=
IDirectSound8_Release
(
dsfd
);
ok
(
ref
==
1
,
"IDirectSoundFullDuplex_Release() has %d references, should have 1
\n
"
,
ref
);
}
ref
=
IDirectSoundFullDuplex_Release
(
dsfdo
);
...
...
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