mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:52:56 +00:00
[NTOS:PNP]
- Fix indentation in PnpRootPdoPnpControl. Also avoid unnecessary casts. No functional changes. svn path=/trunk/; revision=71083
This commit is contained in:
parent
72cf18964b
commit
d4705d3a33
1 changed files with 60 additions and 60 deletions
|
@ -1115,8 +1115,8 @@ PnpRootPdoPnpControl(
|
||||||
PIO_STACK_LOCATION IrpSp;
|
PIO_STACK_LOCATION IrpSp;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
DeviceExtension = (PPNPROOT_PDO_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
DeviceExtension = DeviceObject->DeviceExtension;
|
||||||
FdoDeviceExtension = (PPNPROOT_FDO_DEVICE_EXTENSION)PnpRootDeviceObject->DeviceExtension;
|
FdoDeviceExtension = PnpRootDeviceObject->DeviceExtension;
|
||||||
Status = Irp->IoStatus.Status;
|
Status = Irp->IoStatus.Status;
|
||||||
IrpSp = IoGetCurrentIrpStackLocation(Irp);
|
IrpSp = IoGetCurrentIrpStackLocation(Irp);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue