mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:35:41 +00:00
fixed warnings
svn path=/trunk/; revision=6287
This commit is contained in:
parent
6c3428a268
commit
e959d6aee2
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
/* $Id: rw.c,v 1.61 2003/10/11 17:51:56 hbirr Exp $
|
/* $Id: rw.c,v 1.62 2003/10/12 01:13:23 weiden Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -456,7 +456,7 @@ VfatRead(PVFAT_IRP_CONTEXT IrpContext)
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
PVFATFCB Fcb;
|
PVFATFCB Fcb;
|
||||||
ULONG Length;
|
ULONG Length = 0;
|
||||||
ULONG ReturnedLength = 0;
|
ULONG ReturnedLength = 0;
|
||||||
PERESOURCE Resource = NULL;
|
PERESOURCE Resource = NULL;
|
||||||
LARGE_INTEGER ByteOffset;
|
LARGE_INTEGER ByteOffset;
|
||||||
|
@ -697,7 +697,7 @@ NTSTATUS VfatWrite (PVFAT_IRP_CONTEXT IrpContext)
|
||||||
LARGE_INTEGER ByteOffset;
|
LARGE_INTEGER ByteOffset;
|
||||||
LARGE_INTEGER OldFileSize;
|
LARGE_INTEGER OldFileSize;
|
||||||
NTSTATUS Status = STATUS_SUCCESS;
|
NTSTATUS Status = STATUS_SUCCESS;
|
||||||
ULONG Length;
|
ULONG Length = 0;
|
||||||
ULONG OldAllocationSize;
|
ULONG OldAllocationSize;
|
||||||
PVOID Buffer;
|
PVOID Buffer;
|
||||||
ULONG BytesPerSector;
|
ULONG BytesPerSector;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue