Disabled/removed debug messages.

svn path=/trunk/; revision=3349
This commit is contained in:
Hartmut Birr 2002-08-17 15:46:36 +00:00
parent d7f19d41ea
commit 4b6ce94d5d

View file

@ -1,4 +1,4 @@
/* $Id: finfo.c,v 1.17 2002/08/17 15:15:50 hbirr Exp $ /* $Id: finfo.c,v 1.18 2002/08/17 15:46:36 hbirr Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -359,7 +359,7 @@ VfatSetAllocationSizeInformation(PFILE_OBJECT FileObject,
ULONG NewSize = AllocationSize->u.LowPart; ULONG NewSize = AllocationSize->u.LowPart;
ULONG NCluster; ULONG NCluster;
DPRINT1("VfatSetAllocationSizeInformation()\n"); DPRINT("VfatSetAllocationSizeInformation()\n");
OldSize = Fcb->entry.FileSize; OldSize = Fcb->entry.FileSize;
if (AllocationSize->u.HighPart > 0) if (AllocationSize->u.HighPart > 0)
@ -467,7 +467,6 @@ VfatSetAllocationSizeInformation(PFILE_OBJECT FileObject,
{ {
CcSetFileSizes(FileObject, (PCC_FILE_SIZES)&Fcb->RFCB.AllocationSize); CcSetFileSizes(FileObject, (PCC_FILE_SIZES)&Fcb->RFCB.AllocationSize);
} }
DPRINT1("\n");
/* Update the on-disk directory entry */ /* Update the on-disk directory entry */
VfatUpdateEntry(DeviceExt, FileObject); VfatUpdateEntry(DeviceExt, FileObject);
return STATUS_SUCCESS; return STATUS_SUCCESS;