https://git.reactos.org/?p=reactos.git;a=commitdiff;h=32f7474f38cab052f251a…
commit 32f7474f38cab052f251aee9df6546fd6d0500b2
Author: Serge Gautherie <32623169+SergeGautherie(a)users.noreply.github.com>
AuthorDate: Fri Feb 5 14:10:15 2021 +0100
Commit: GitHub <noreply(a)github.com>
CommitDate: Fri Feb 5 16:10:15 2021 +0300
[SETUPLIB] Fix 'unlock' copypasta in debug print (#3448)
Addendum to 76ac898.
---
base/setup/lib/bootsup.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/base/setup/lib/bootsup.c b/base/setup/lib/bootsup.c
index b1e11d108d4..d3aad8ee95e 100644
--- a/base/setup/lib/bootsup.c
+++ b/base/setup/lib/bootsup.c
@@ -600,7 +600,7 @@ InstallBootCodeToDisk(
LockStatus = NtFsControlFile(PartitionHandle, NULL, NULL, NULL,
&IoStatusBlock, FSCTL_DISMOUNT_VOLUME, NULL, 0, NULL, 0);
if (!NT_SUCCESS(LockStatus))
{
- DPRINT1("Unable to unlock the volume after installing boot code. Status
0x%08x. Expect problems.\n", LockStatus);
+ DPRINT1("Unable to dismount the volume after installing boot code.
Status 0x%08x. Expect problems.\n", LockStatus);
}
LockStatus = NtFsControlFile(PartitionHandle, NULL, NULL, NULL,
&IoStatusBlock, FSCTL_UNLOCK_VOLUME, NULL, 0, NULL, 0);