Module: wine Branch: master Commit: a5c50a25fbd2401f9a2b616ffd225d4c856ef402 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a5c50a25fbd2401f9a2b616ffd...
Author: Austin English austinenglish@gmail.com Date: Wed Dec 22 23:18:25 2010 -0800
quartz: Avoid %L in traces (LLVM/Clang).
---
dlls/quartz/dsoundrender.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/quartz/dsoundrender.c b/dlls/quartz/dsoundrender.c index f48cc77..d472145 100644 --- a/dlls/quartz/dsoundrender.c +++ b/dlls/quartz/dsoundrender.c @@ -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;