mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SETUPLIB] Fix 'unlock' copypasta in debug print (#3448)
Addendum to 76ac898
.
This commit is contained in:
parent
dbcd6efedf
commit
32f7474f38
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue