Commit 5f0a6691 authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32: Use the magic format string prefix for relay traces.

parent 1729cc05
......@@ -1112,9 +1112,8 @@ static DWORD WINAPI start_process( LPTHREAD_START_ROUTINE entry )
ExitThread( 1 );
}
if (TRACE_ON(relay))
DPRINTF( "%04x:Starting process %s (entryproc=%p)\n", GetCurrentThreadId(),
debugstr_w(peb->ProcessParameters->ImagePathName.Buffer), entry );
TRACE_(relay)( "\1Starting process %s (entryproc=%p)\n",
debugstr_w(peb->ProcessParameters->ImagePathName.Buffer), entry );
if (!CheckRemoteDebuggerPresent( GetCurrentProcess(), &being_debugged ))
being_debugged = FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment