mirror of
https://github.com/reactos/reactos.git
synced 2025-06-05 01:10:26 +00:00
[AUTOCHK] Improve readability of messages
This commit is contained in:
parent
e6ea0bcbbf
commit
7bbb6bd4b5
1 changed files with 4 additions and 4 deletions
|
@ -361,7 +361,7 @@ CheckVolume(
|
||||||
return Status;
|
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 */
|
/* Call provider */
|
||||||
for (Count = 0; Count < sizeof(FileSystems) / sizeof(FileSystems[0]); ++Count)
|
for (Count = 0; Count < sizeof(FileSystems) / sizeof(FileSystems[0]); ++Count)
|
||||||
|
@ -391,8 +391,8 @@ CheckVolume(
|
||||||
|
|
||||||
/* Let the user decide whether to repair */
|
/* Let the user decide whether to repair */
|
||||||
PrintString(" The file system on this volume needs to be checked for problems.\r\n");
|
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(" 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", TimeOut);
|
PrintString(" Press any key within %d second(s) to cancel and resume startup.\r\n\r\n", TimeOut);
|
||||||
|
|
||||||
/* Timeout == fix it! */
|
/* Timeout == fix it! */
|
||||||
WaitStatus = WaitForKeyboard(TimeOut);
|
WaitStatus = WaitForKeyboard(TimeOut);
|
||||||
|
@ -404,7 +404,7 @@ CheckVolume(
|
||||||
TRUE, // CheckOnlyIfDirty
|
TRUE, // CheckOnlyIfDirty
|
||||||
FALSE,// ScanDrive
|
FALSE,// ScanDrive
|
||||||
ChkdskCallback);
|
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
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue