https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7bbb6bd4b5c8bb5e768ad…
commit 7bbb6bd4b5c8bb5e768ade7e682677ebfee2c5dc
Author: David Knapp <mazecraze96(a)gmail.com>
AuthorDate: Thu Jul 26 01:28:42 2018 -0400
Commit: Pierre Schweitzer <pierre(a)reactos.org>
CommitDate: Thu Jul 26 07:28:42 2018 +0200
[AUTOCHK] Improve readability of messages
---
base/system/autochk/autochk.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/base/system/autochk/autochk.c b/base/system/autochk/autochk.c
index 1940c651ec..5c133a8c5e 100644
--- a/base/system/autochk/autochk.c
+++ b/base/system/autochk/autochk.c
@@ -361,7 +361,7 @@ CheckVolume(
return Status;
}
- PrintString(" The file system type is %S.\r\n", FileSystem);
+ PrintString(" The file system type is %S.\r\n\r\n", FileSystem);
/* Call provider */
for (Count = 0; Count < sizeof(FileSystems) / sizeof(FileSystems[0]); ++Count)
@@ -391,8 +391,8 @@ CheckVolume(
/* Let the user decide whether to repair */
PrintString(" The file system on this volume needs to be checked for
problems.\r\n");
- PrintString(" You may cancel this check, but it's recommended that
you continue.\r\n");
- PrintString(" Press any key within %d second(s) to cancel and resume
startup.\r\n", TimeOut);
+ PrintString(" You may cancel this check, but it's recommended that
you continue.\r\n\r\n");
+ PrintString(" Press any key within %d second(s) to cancel and resume
startup.\r\n\r\n", TimeOut);
/* Timeout == fix it! */
WaitStatus = WaitForKeyboard(TimeOut);
@@ -404,7 +404,7 @@ CheckVolume(
TRUE, // CheckOnlyIfDirty
FALSE,// ScanDrive
ChkdskCallback);
- PrintString(" The system will now check the file
system.\r\n");
+ PrintString(" The system will now check the file
system.\r\n\r\n");
}
else
{