From 673d7538cbfe30279e651768763348b51f3fe4a6 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 31 Aug 2010 11:53:36 +0200 Subject: [PATCH] usp10: Add a trailing '\n' to a TRACE() call. --- dlls/usp10/bidi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/usp10/bidi.c b/dlls/usp10/bidi.c index 0538fa5f4f..9c5884d260 100644 --- a/dlls/usp10/bidi.c +++ b/dlls/usp10/bidi.c @@ -750,7 +750,7 @@ BOOL BIDI_DetermineLevels( { WORD *chartype; unsigned baselevel = 0,j; - TRACE("%s, %d", debugstr_wn(lpString, uCount), uCount); + TRACE("%s, %d\n", debugstr_wn(lpString, uCount), uCount); chartype = HeapAlloc(GetProcessHeap(), 0, uCount * sizeof(WORD)); if (!chartype) -- 2.32.0.93.g670b81a890