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
bc9a95bb
Commit
bc9a95bb
authored
Oct 31, 2015
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi/tests: Avoid %ll printf format.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cbaab82d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
render.c
dlls/mmdevapi/tests/render.c
+2
-1
No files found.
dlls/mmdevapi/tests/render.c
View file @
bc9a95bb
...
...
@@ -337,7 +337,8 @@ static void test_audioclient(void)
(
UINT
)(
t2
/
10000
),
(
UINT
)(
t2
%
10000
));
ok
(
t2
>=
t1
||
broken
(
t2
>=
t1
/
2
&&
pwfx
->
nSamplesPerSec
>
48000
)
||
broken
(
t2
==
0
)
/* (!) win10 */
,
"Latency < default period, delta %ldus (%llu vs %llu)
\n
"
,
(
long
)((
t2
-
t1
)
/
10
),
t2
,
t1
);
"Latency < default period, delta %dus (%x%08x vs %x%08x)
\n
"
,
(
LONG
)((
t2
-
t1
)
/
10
),
(
DWORD
)(
t2
>>
32
),
(
DWORD
)
t2
,
(
DWORD
)(
t1
>>
32
),
(
DWORD
)
t1
);
/* Native appears to add the engine period to the HW latency in shared mode */
if
(
t2
==
0
)
win10
=
TRUE
;
...
...
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