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
7209cb89
Commit
7209cb89
authored
Nov 30, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound: Use wine_dbg_sprintf() in dumpCooperativeLevel().
parent
2665272d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
dsound.c
dlls/dsound/dsound.c
+1
-3
No files found.
dlls/dsound/dsound.c
View file @
7209cb89
...
...
@@ -113,7 +113,6 @@ static HRESULT DirectSoundDevice_VerifyCertification(DirectSoundDevice * device,
const
char
*
dumpCooperativeLevel
(
DWORD
level
)
{
static
char
unknown
[
32
];
#define LE(x) case x: return #x
switch
(
level
)
{
LE
(
DSSCL_NORMAL
);
...
...
@@ -122,8 +121,7 @@ const char * dumpCooperativeLevel(DWORD level)
LE
(
DSSCL_WRITEPRIMARY
);
}
#undef LE
sprintf
(
unknown
,
"Unknown(%08x)"
,
level
);
return
unknown
;
return
wine_dbg_sprintf
(
"Unknown(%08x)"
,
level
);
}
static
void
_dump_DSCAPS
(
DWORD
xmask
)
{
...
...
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