https://git.reactos.org/?p=reactos.git;a=commitdiff;h=32f7474f38cab052f251aee9df6546fd6d0500b2

commit 32f7474f38cab052f251aee9df6546fd6d0500b2
Author:     Serge Gautherie <[email protected]>
AuthorDate: Fri Feb 5 14:10:15 2021 +0100
Commit:     GitHub <[email protected]>
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);

Reply via email to