update for HEAD-2003050101
[reactos.git] / ntoskrnl / io / parttab.c
index 81290f1..581cc0c 100644 (file)
@@ -25,10 +25,10 @@ IoReadPartitionTable(PDEVICE_OBJECT DeviceObject,
                     BOOLEAN ReturnRecognizedPartitions,
                     PDRIVE_LAYOUT_INFORMATION *PartitionBuffer)
 {
-       return HalDispatchTable.HalIoReadPartitionTable(DeviceObject,
-                                                       SectorSize,
-                                                       ReturnRecognizedPartitions,
-                                                       PartitionBuffer);
+  return(HalIoReadPartitionTable(DeviceObject,
+                                SectorSize,
+                                ReturnRecognizedPartitions,
+                                PartitionBuffer));
 }
 
 
@@ -38,10 +38,10 @@ IoSetPartitionInformation(PDEVICE_OBJECT DeviceObject,
                          ULONG PartitionNumber,
                          ULONG PartitionType)
 {
-   return HalDispatchTable.HalIoSetPartitionInformation(DeviceObject,
-                                                       SectorSize,
-                                                       PartitionNumber,
-                                                       PartitionType);
+  return(HalIoSetPartitionInformation(DeviceObject,
+                                     SectorSize,
+                                     PartitionNumber,
+                                     PartitionType));
 }
 
 
@@ -52,11 +52,11 @@ IoWritePartitionTable(PDEVICE_OBJECT DeviceObject,
                      ULONG NumberOfHeads,
                      PDRIVE_LAYOUT_INFORMATION PartitionBuffer)
 {
-   return HalDispatchTable.HalIoWritePartitionTable(DeviceObject,
-                                                   SectorSize,
-                                                   SectorsPerTrack,
-                                                   NumberOfHeads,
-                                                   PartitionBuffer);
+  return(HalIoWritePartitionTable(DeviceObject,
+                                 SectorSize,
+                                 SectorsPerTrack,
+                                 NumberOfHeads,
+                                 PartitionBuffer));
 }
 
 /* EOF */