Francois Gouget : combase: Fix the trailing linefeed of a TRACE().
Module: wine Branch: master Commit: dc597eb88df35b9a8d963331f08d040f03fb954e URL: https://source.winehq.org/git/wine.git/?a=commit;h=dc597eb88df35b9a8d963331f... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Aug 10 17:06:36 2020 +0200 combase: Fix the trailing linefeed of a TRACE(). Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/combase/usrmarshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/combase/usrmarshal.c b/dlls/combase/usrmarshal.c index 8bea32cdd5..48a6c2de4b 100644 --- a/dlls/combase/usrmarshal.c +++ b/dlls/combase/usrmarshal.c @@ -163,7 +163,7 @@ IMPL_WIREM_HANDLE(HWND) */ ULONG __RPC_USER CLIPFORMAT_UserSize(ULONG *pFlags, ULONG size, CLIPFORMAT *pCF) { - TRACE("%s, %u, %p.n", debugstr_user_flags(pFlags), size, pCF); + TRACE("%s, %u, %p\n", debugstr_user_flags(pFlags), size, pCF); ALIGN_LENGTH(size, 3);
participants (1)
-
Alexandre Julliard