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
a5c50a25
Commit
a5c50a25
authored
Dec 22, 2010
by
Austin English
Committed by
Alexandre Julliard
Dec 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Avoid %L in traces (LLVM/Clang).
parent
cccc36e2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dsoundrender.c
dlls/quartz/dsoundrender.c
+2
-2
No files found.
dlls/quartz/dsoundrender.c
View file @
a5c50a25
...
...
@@ -1193,7 +1193,7 @@ static DWORD WINAPI DSoundAdviseThread(LPVOID lpParam) {
FIXME
(
"Could not get time: %08x
\n
"
,
hr
);
continue
;
}
TRACE
(
"Time: %
Li
\n
"
,
curtime
);
TRACE
(
"Time: %
s
\n
"
,
wine_dbgstr_longlong
(
curtime
)
);
while
(
prev
->
next
)
{
cur
=
prev
->
next
;
if
(
cur
->
start
>
curtime
)
{
...
...
@@ -1207,7 +1207,7 @@ static DWORD WINAPI DSoundAdviseThread(LPVOID lpParam) {
prev
=
cur
;
}
else
{
struct
dsoundrender_timer
*
next
=
cur
->
next
;
TRACE
(
"Firing %p %
Li < %Li
\n
"
,
cur
,
cur
->
start
,
curtime
);
TRACE
(
"Firing %p %
s < %s
\n
"
,
cur
,
wine_dbgstr_longlong
(
cur
->
start
),
wine_dbgstr_longlong
(
curtime
)
);
SetEvent
(
cur
->
handle
);
HeapFree
(
GetProcessHeap
(),
0
,
cur
);
prev
->
next
=
next
;
...
...
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