From 4b6ce94d5d909024f63c06a9b0d0f314e8ccd29f Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Sat, 17 Aug 2002 15:46:36 +0000 Subject: [PATCH] Disabled/removed debug messages. svn path=/trunk/; revision=3349 --- reactos/drivers/fs/vfat/finfo.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/reactos/drivers/fs/vfat/finfo.c b/reactos/drivers/fs/vfat/finfo.c index 710dbc73961..5281c3d279a 100644 --- a/reactos/drivers/fs/vfat/finfo.c +++ b/reactos/drivers/fs/vfat/finfo.c @@ -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 * PROJECT: ReactOS kernel @@ -359,7 +359,7 @@ VfatSetAllocationSizeInformation(PFILE_OBJECT FileObject, ULONG NewSize = AllocationSize->u.LowPart; ULONG NCluster; - DPRINT1("VfatSetAllocationSizeInformation()\n"); + DPRINT("VfatSetAllocationSizeInformation()\n"); OldSize = Fcb->entry.FileSize; if (AllocationSize->u.HighPart > 0) @@ -467,7 +467,6 @@ VfatSetAllocationSizeInformation(PFILE_OBJECT FileObject, { CcSetFileSizes(FileObject, (PCC_FILE_SIZES)&Fcb->RFCB.AllocationSize); } - DPRINT1("\n"); /* Update the on-disk directory entry */ VfatUpdateEntry(DeviceExt, FileObject); return STATUS_SUCCESS;