[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:
Kyle Katarn 2020-09-18 00:17:08 +02:00 committed by GitHub
parent 378b26ce27
commit ac2b2ef8c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}