[REACTOS] Add '\n' to debug logs

on TRACE, WARN, FIXME and ERR calls.

Plus a few nit picks.
This commit is contained in:
Serge Gautherie 2022-05-02 14:26:10 +02:00 committed by Stanislav Motylkov
parent 079131faca
commit 03422451b3
40 changed files with 52 additions and 52 deletions

View file

@ -282,7 +282,7 @@ loop:
case GC_KEYREAD:
TRACE ("GC_KEYREAD\n");
TRACE ("elapsed %d msecs\n", GetTickCount () - clk);
TRACE ("read %c", Ch);
TRACE ("read %c\n", Ch);
if ((val=IsKeyInString(lpOptions,Ch,bCaseSensitive))==-1)
{
Beep (440, 50);

View file

@ -32,7 +32,7 @@ PrintElapsedTime (DWORD time,INT format)
{
DWORD h,m,s,ms;
TRACE ("PrintElapsedTime(%d,%d)",time,format);
TRACE("PrintElapsedTime(%lu, %d)\n", time, format);
switch (format)
{