mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 02:26:03 +00:00
[PARTMGR] Fix the way the "symlink -> target" DPRINT is displayed
This commit is contained in:
parent
2d6bbdc6ed
commit
33ac3578fd
1 changed files with 3 additions and 3 deletions
|
@ -120,7 +120,7 @@ PartitionHandleStartDevice(
|
||||||
|
|
||||||
PartExt->SymlinkCreated = TRUE;
|
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:
|
// our partition device will have two interfaces:
|
||||||
// GUID_DEVINTERFACE_PARTITION and GUID_DEVINTERFACE_VOLUME
|
// GUID_DEVINTERFACE_PARTITION and GUID_DEVINTERFACE_VOLUME
|
||||||
|
@ -203,7 +203,7 @@ PartitionHandleRemove(
|
||||||
}
|
}
|
||||||
PartExt->SymlinkCreated = FALSE;
|
PartExt->SymlinkCreated = FALSE;
|
||||||
|
|
||||||
INFO("Symlink removed %wZ -> %wZ\n", &PartExt->DeviceName, &partitionSymlink);
|
INFO("Symlink removed %wZ -> %wZ\n", &partitionSymlink, &PartExt->DeviceName);
|
||||||
}
|
}
|
||||||
|
|
||||||
// release device interfaces
|
// release device interfaces
|
||||||
|
@ -258,7 +258,7 @@ PartitionHandleDeviceRelations(
|
||||||
|
|
||||||
if (type == TargetDeviceRelation)
|
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 =
|
PDEVICE_RELATIONS deviceRelations =
|
||||||
ExAllocatePoolZero(PagedPool, sizeof(DEVICE_RELATIONS), TAG_PARTMGR);
|
ExAllocatePoolZero(PagedPool, sizeof(DEVICE_RELATIONS), TAG_PARTMGR);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue