[PARTMGR] Fix the way the "symlink -> target" DPRINT is displayed

This commit is contained in:
Hermès Bélusca-Maïto 2024-05-22 22:45:52 +02:00
parent 2d6bbdc6ed
commit 33ac3578fd
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -120,7 +120,7 @@ PartitionHandleStartDevice(
PartExt->SymlinkCreated = TRUE;
TRACE("Symlink created %wZ -> %wZ\n", &PartExt->DeviceName, &partitionSymlink);
INFO("Symlink created %wZ -> %wZ\n", &partitionSymlink, &PartExt->DeviceName);
// our partition device will have two interfaces:
// GUID_DEVINTERFACE_PARTITION and GUID_DEVINTERFACE_VOLUME
@ -203,7 +203,7 @@ PartitionHandleRemove(
}
PartExt->SymlinkCreated = FALSE;
INFO("Symlink removed %wZ -> %wZ\n", &PartExt->DeviceName, &partitionSymlink);
INFO("Symlink removed %wZ -> %wZ\n", &partitionSymlink, &PartExt->DeviceName);
}
// release device interfaces
@ -258,7 +258,7 @@ PartitionHandleDeviceRelations(
if (type == TargetDeviceRelation)
{
// Device relations has one entry built in to it's size.
// Device relations have one entry built into their size.
PDEVICE_RELATIONS deviceRelations =
ExAllocatePoolZero(PagedPool, sizeof(DEVICE_RELATIONS), TAG_PARTMGR);