[NTFS] - Fix a couple of issues spotted by Thomas: Maintain alphabetical ordering of CMakeLists.txt, fix casts to BOOLEAN with BooleanFlagOn macro.

svn path=/branches/GSoC_2016/NTFS/; revision=75224
This commit is contained in:
Trevor Thompson 2017-06-28 18:22:42 +00:00 committed by Thomas Faber
parent 54f5c3b6ec
commit 2dc4938549
5 changed files with 5 additions and 5 deletions

View file

@ -686,7 +686,7 @@ NtfsWrite(PNTFS_IRP_CONTEXT IrpContext)
Length,
ByteOffset.LowPart,
Irp->Flags,
(IrpContext->Stack->Flags & SL_CASE_SENSITIVE),
BooleanFlagOn(IrpContext->Stack->Flags, SL_CASE_SENSITIVE),
&ReturnedWriteLength);
IrpContext->Irp->IoStatus.Status = Status;