SNOOP_DoReturn: remove redundant printing of tid.
This commit is contained in:
parent
10c886f050
commit
0249fcd560
|
@ -371,10 +371,10 @@ void WINAPI SNOOP_DoReturn( CONTEXT86 *context )
|
||||||
HeapFree(GetProcessHeap(),0,ret->args);
|
HeapFree(GetProcessHeap(),0,ret->args);
|
||||||
ret->args = NULL;
|
ret->args = NULL;
|
||||||
} else
|
} 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(),
|
GetCurrentThreadId(),
|
||||||
ret->dll->name,ret->dll->ordbase+ret->ordinal,ret->dll->funs[ret->ordinal].name,
|
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 */
|
ret->origreturn = NULL; /* mark as empty */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue