mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 15:08:14 +00:00
[CMD]
- Fix missing new line in the timer command results. Spotted by Mikael Lyngvig. See issue #7140 for more details. svn path=/trunk/; revision=56858
This commit is contained in:
parent
de0561fdf3
commit
110a73b8c5
1 changed files with 3 additions and 3 deletions
|
@ -163,7 +163,7 @@ INT CommandTimer (LPTSTR param)
|
|||
if(cS)
|
||||
{
|
||||
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
||||
ConOutPuts(GetTimeString());
|
||||
ConOutPrintf(_T("%s\n"), GetTimeString());
|
||||
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
||||
freep(p);
|
||||
return 0;
|
||||
|
@ -183,7 +183,7 @@ INT CommandTimer (LPTSTR param)
|
|||
{
|
||||
cS=FALSE;
|
||||
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
||||
ConOutPuts(GetTimeString());
|
||||
ConOutPrintf(_T("%s\n"), GetTimeString());
|
||||
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
||||
freep(p);
|
||||
return 0;
|
||||
|
@ -204,7 +204,7 @@ INT CommandTimer (LPTSTR param)
|
|||
{
|
||||
cS=FALSE;
|
||||
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
||||
ConOutPuts(GetTimeString());
|
||||
ConOutPrintf(_T("%s\n"), GetTimeString());
|
||||
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
||||
freep(p);
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue