[CMD] HISTORY: Fix command output (missing linefeed) (#3205)

CORE-12603

Co-authored-by: Hermès BÉLUSCA - MAÏTO <[email protected]>
This commit is contained in:
Kyle Katarn
2020-09-18 00:17:08 +02:00
committed by GitHub
co-authored by Hermès BÉLUSCA - MAÏTO
parent 378b26ce27
commit ac2b2ef8c7
+1 -1
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;
}