mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 23:48:12 +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)
|
if(cS)
|
||||||
{
|
{
|
||||||
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
||||||
ConOutPuts(GetTimeString());
|
ConOutPrintf(_T("%s\n"), GetTimeString());
|
||||||
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
||||||
freep(p);
|
freep(p);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -183,7 +183,7 @@ INT CommandTimer (LPTSTR param)
|
||||||
{
|
{
|
||||||
cS=FALSE;
|
cS=FALSE;
|
||||||
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
||||||
ConOutPuts(GetTimeString());
|
ConOutPrintf(_T("%s\n"), GetTimeString());
|
||||||
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
||||||
freep(p);
|
freep(p);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -204,7 +204,7 @@ INT CommandTimer (LPTSTR param)
|
||||||
{
|
{
|
||||||
cS=FALSE;
|
cS=FALSE;
|
||||||
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
ConOutResPrintf (STRING_TIMER_TIME,clk_n,cS?_T("ON"):_T("OFF"));
|
||||||
ConOutPuts(GetTimeString());
|
ConOutPrintf(_T("%s\n"), GetTimeString());
|
||||||
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
PrintElapsedTime(GetTickCount()-cT, iFormat);
|
||||||
freep(p);
|
freep(p);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue