reactos/drivers/fs/vfat
diff -u -r1.36 -r1.37
--- dir.c 5 Dec 2004 16:31:50 -0000 1.36
+++ dir.c 23 Dec 2004 12:39:16 -0000 1.37
@@ -1,5 +1,5 @@
/*
- * $Id: dir.c,v 1.36 2004/12/05 16:31:50 gvg Exp $
+ * $Id: dir.c,v 1.37 2004/12/23 12:39:16 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -313,8 +313,8 @@
VFAT_DIRENTRY_CONTEXT DirContext;
WCHAR LongNameBuffer[MAX_PATH];
WCHAR ShortNameBuffer[13];
-
- PEXTENDED_IO_STACK_LOCATION Stack = (PEXTENDED_IO_STACK_LOCATION) IrpContext->Stack;
+
+ PIO_STACK_LOCATION Stack = IrpContext->Stack;
pCcb = (PVFATCCB) IrpContext->FileObject->FsContext2;
pFcb = (PVFATFCB) IrpContext->FileObject->FsContext;
reactos/drivers/fs/vfat
diff -u -r1.28 -r1.29
--- volume.c 5 Dec 2004 16:31:51 -0000 1.28
+++ volume.c 23 Dec 2004 12:39:16 -0000 1.29
@@ -1,4 +1,4 @@
-/* $Id: volume.c,v 1.28 2004/12/05 16:31:51 gvg Exp $
+/* $Id: volume.c,v 1.29 2004/12/23 12:39:16 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -382,7 +382,7 @@
NTSTATUS Status = STATUS_SUCCESS;
PVOID SystemBuffer;
ULONG BufferLength;
- PEXTENDED_IO_STACK_LOCATION Stack = (PEXTENDED_IO_STACK_LOCATION) IrpContext->Stack;
+ PIO_STACK_LOCATION Stack = IrpContext->Stack;
/* PRECONDITION */
ASSERT(IrpContext);