From 274c4db92182f3ce851cbe58ae2e937728bab460 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Sat, 17 Jun 2000 22:03:23 +0000 Subject: [PATCH] Added missing DPRINT svn path=/trunk/; revision=1191 --- reactos/drivers/fs/vfat/fat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/drivers/fs/vfat/fat.c b/reactos/drivers/fs/vfat/fat.c index 395c2d7b89e..23bb3490706 100644 --- a/reactos/drivers/fs/vfat/fat.c +++ b/reactos/drivers/fs/vfat/fat.c @@ -1,5 +1,5 @@ /* - * $Id: fat.c,v 1.4 2000/03/12 23:28:59 ekohl Exp $ + * $Id: fat.c,v 1.5 2000/06/17 22:03:23 phreak Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -439,6 +439,7 @@ ULONG GetNextWriteCluster(PDEVICE_EXTENSION DeviceExt, ULONG CurrentCluster) else { NewCluster = FAT12FindAvailableCluster(DeviceExt); + DPRINT( "NewFat12Cluster: %x\n", NewCluster ); } /* Mark the new AU as the EOF */ WriteCluster(DeviceExt, NewCluster, 0xFFFFFFFF);