[NTFS] - Fix some formatting / style issues, per CR-123.

svn path=/branches/GSoC_2016/NTFS/; revision=75290
This commit is contained in:
Trevor Thompson 2017-07-05 22:10:22 +00:00 committed by Thomas Faber
parent 5ab24a5aae
commit 430ce0a9e3
5 changed files with 11 additions and 8 deletions

View file

@ -299,7 +299,7 @@ NtfsOpenFile(PDEVICE_EXTENSION DeviceExt,
ParentFcb);
}
if (!NT_SUCCESS (Status))
if (!NT_SUCCESS(Status))
{
DPRINT("Could not make a new FCB, status: %x\n", Status);
@ -347,7 +347,7 @@ NtfsCreateFile(PDEVICE_OBJECT DeviceObject,
DeviceExt = DeviceObject->DeviceExtension;
ASSERT(DeviceExt);
Stack = IoGetCurrentIrpStackLocation (Irp);
Stack = IoGetCurrentIrpStackLocation(Irp);
ASSERT(Stack);
RequestedDisposition = ((Stack->Parameters.Create.Options >> 24) & 0xff);