Skip to content
Snippets Groups Projects
Commit 0249fcd5 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard
Browse files

SNOOP_DoReturn: remove redundant printing of tid.

parent 10c886f0
No related branches found
No related tags found
No related merge requests found
......@@ -371,10 +371,10 @@ void WINAPI SNOOP_DoReturn( CONTEXT86 *context )
HeapFree(GetProcessHeap(),0,ret->args);
ret->args = NULL;
} else
DPRINTF("%08lx:RET %s.%ld: %s() retval = %08lx ret=%08lx tid=%08lx\n",
DPRINTF("%08lx:RET %s.%ld: %s() retval = %08lx ret=%08lx\n",
GetCurrentThreadId(),
ret->dll->name,ret->dll->ordbase+ret->ordinal,ret->dll->funs[ret->ordinal].name,
context->Eax, (DWORD)ret->origreturn, GetCurrentThreadId());
context->Eax, (DWORD)ret->origreturn);
ret->origreturn = NULL; /* mark as empty */
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment