"Jeremy White" jwhite@codeweavers.com wrote:
static void TIME_TriggerCallBack(LPWINE_TIMERENTRY lpTimer) {
- TRACE("before CallBack => lpFunc=%p wTimerID=%04X dwUser=%08lX !\n",
- lpTimer->lpFunc, lpTimer->wTimerID, lpTimer->dwUser);
- TRACE("%04lx:CallBack => lpFunc=%p wTimerID=%04X dwUser=%08lX dwTriggerTime %ld(delta %ld)\n",
- GetCurrentThreadId(), lpTimer->lpFunc, lpTimer->wTimerID, lpTimer->dwUser,
lpTimer->dwTriggerTime, GetTickCount() - lpTimer->dwTriggerTime);
That "%04lx:"/GetCurrentThreadId() shouldn't be there, that's the job of +tid debug channel.
That "%04lx:"/GetCurrentThreadId() shouldn't be there, that's the job of +tid debug channel.
Whoops. Thought I cleaned out all of my debug changes, but I missed one. Thanks for catching it.
Jer