fix indentation

svn path=/trunk/; revision=18979
This commit is contained in:
Royce Mitchell III 2005-11-04 00:03:34 +00:00
parent a21eb62527
commit 3364c02cec

View file

@ -1,13 +1,13 @@
/*
* FILE: drivers/fs/vfat/fcb.c
* PURPOSE: Routines to manipulate FCBs.
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* PROGRAMMER: Jason Filby (jasonfilby@yahoo.com)
* Rex Jolliff (rex@lvcablemodem.com)
* Hartmut Birr
* Herve Poussineau (reactos@poussine.freesurf.fr)
*/
* FILE: drivers/fs/vfat/fcb.c
* PURPOSE: Routines to manipulate FCBs.
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* PROGRAMMER: Jason Filby (jasonfilby@yahoo.com)
* Rex Jolliff (rex@lvcablemodem.com)
* Hartmut Birr
* Herve Poussineau (reactos@poussine.freesurf.fr)
*/
/* ------------------------------------------------------- INCLUDES */
@ -429,7 +429,8 @@ vfatOpenRootFCB(PDEVICE_EXTENSION pVCB)
}
NTSTATUS
vfatMakeFCBFromDirEntry(PVCB vcb,
vfatMakeFCBFromDirEntry(
PVCB vcb,
PVFATFCB directoryFCB,
PVFAT_DIRENTRY_CONTEXT DirContext,
PVFATFCB* fileFCB)
@ -542,7 +543,8 @@ vfatMakeFCBFromDirEntry(PVCB vcb,
}
NTSTATUS
vfatAttachFCBToFileObject (PDEVICE_EXTENSION vcb,
vfatAttachFCBToFileObject (
PDEVICE_EXTENSION vcb,
PVFATFCB fcb,
PFILE_OBJECT fileObject)
{
@ -565,7 +567,8 @@ vfatAttachFCBToFileObject (PDEVICE_EXTENSION vcb,
}
NTSTATUS
vfatDirFindFile (PDEVICE_EXTENSION pDeviceExt,
vfatDirFindFile (
PDEVICE_EXTENSION pDeviceExt,
PVFATFCB pDirectoryFCB,
PUNICODE_STRING FileToFindU,
PVFATFCB * pFoundFCB)
@ -646,7 +649,8 @@ vfatDirFindFile (PDEVICE_EXTENSION pDeviceExt,
}
NTSTATUS
vfatGetFCBForFile (PDEVICE_EXTENSION pVCB,
vfatGetFCBForFile (
PDEVICE_EXTENSION pVCB,
PVFATFCB *pParentFCB,
PVFATFCB *pFCB,
PUNICODE_STRING pFileNameU)