quartz: Avoid %L in traces (LLVM/Clang).

This commit is contained in:
Austin English 2010-12-22 23:18:25 -08:00 committed by Alexandre Julliard
parent cccc36e25a
commit a5c50a25fb
1 changed files with 2 additions and 2 deletions

View File

@ -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;