reactos/drivers/fs/ntfs
diff -u -r1.8 -r1.9
--- dirctl.c 5 Jun 2004 08:28:37 -0000 1.8
+++ dirctl.c 23 Dec 2004 12:38:41 -0000 1.9
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: dirctl.c,v 1.8 2004/06/05 08:28:37 navaraf Exp $
+/* $Id: dirctl.c,v 1.9 2004/12/23 12:38:41 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -494,14 +494,14 @@
PCCB Ccb;
// FCB TempFcb;
BOOLEAN First = FALSE;
- PEXTENDED_IO_STACK_LOCATION Stack;
+ PIO_STACK_LOCATION Stack;
PFILE_OBJECT FileObject;
NTSTATUS Status = STATUS_SUCCESS;
DPRINT1("NtfsQueryDirectory() called\n");
DeviceExtension = DeviceObject->DeviceExtension;
- Stack = (PEXTENDED_IO_STACK_LOCATION) IoGetCurrentIrpStackLocation(Irp);
+ Stack = IoGetCurrentIrpStackLocation(Irp);
FileObject = Stack->FileObject;
Ccb = (PCCB)FileObject->FsContext2;