mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[CMD] HISTORY: Fix command output (missing linefeed) (#3205)
CORE-12603 Co-authored-by: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org>
This commit is contained in:
parent
378b26ce27
commit
ac2b2ef8c7
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ INT CommandHistory(LPTSTR param)
|
|||
else
|
||||
{
|
||||
for (h_tmp = Top->prev; h_tmp != Bottom; h_tmp = h_tmp->prev)
|
||||
ConErrPuts(h_tmp->string);
|
||||
ConOutPrintf(_T("%s\n"), h_tmp->string);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue