Module: wine Branch: master Commit: cc9ce65d963ebcc0469fef4bbe58b6931a607b39 URL: https://source.winehq.org/git/wine.git/?a=commit;h=cc9ce65d963ebcc0469fef4bb... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu Aug 8 15:25:19 2019 +0200 ntdll: Add a trailing '\n' to a TRACE(). Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ntdll/signal_x86_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/signal_x86_64.c b/dlls/ntdll/signal_x86_64.c index 9441230..886d697 100644 --- a/dlls/ntdll/signal_x86_64.c +++ b/dlls/ntdll/signal_x86_64.c @@ -4470,7 +4470,7 @@ USHORT WINAPI RtlCaptureStackBackTrace( ULONG skip, ULONG count, PVOID *buffer, ULONG i; USHORT num_entries = 0; - TRACE( "(%u, %u, %p, %p)", skip, count, buffer, hash ); + TRACE( "(%u, %u, %p, %p)\n", skip, count, buffer, hash ); RtlCaptureContext( &context ); dispatch.TargetIp = 0;