Commit dfde1195 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Fix extra comma in x86_64 relay traces.

parent 342e2cab
......@@ -745,7 +745,7 @@ DECLSPEC_HIDDEN void * WINAPI relay_trace_entry( struct relay_descr *descr, unsi
TRACE( "%08lx", stack[i] );
break;
}
if (!is_ret_val( arg_types[i] )) TRACE( "," );
if (!is_ret_val( arg_types[i+1] )) TRACE( "," );
}
*nb_args = i;
TRACE( ") ret=%08lx\n", stack[-1] );
......
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