https://git.reactos.org/?p=reactos.git;a=commitdiff;h=860a985f26a41140ca063e9493dbd953ede06ec9
commit 860a985f26a41140ca063e9493dbd953ede06ec9 Author: Kyle Katarn <[email protected]> AuthorDate: Sun Sep 13 23:02:09 2020 +0200 Commit: GitHub <[email protected]> CommitDate: Sun Sep 13 23:02:09 2020 +0200 [FORMAT] Fix of output text overlap in console when finished (#3177) At the end of the format operation, text in console got overwritten and leftovers from previous line remained displayed. --- base/system/format/format.c | 1 + 1 file changed, 1 insertion(+) diff --git a/base/system/format/format.c b/base/system/format/format.c index 6685200e479..0d7e642c598 100644 --- a/base/system/format/format.c +++ b/base/system/format/format.c @@ -562,6 +562,7 @@ int wmain(int argc, WCHAR *argv[]) FormatEx(RootDirectory, media, FileSystem, Label, QuickFormat, ClusterSize, FormatExCallback); if (Error) return -1; + ConPuts(StdOut, L"\n"); ConResPuts(StdOut, STRING_FMT_COMPLETE); //
