[ros-diffs] [cwittich] 30640: fix some format strings

cwittich at svn.reactos.org cwittich at svn.reactos.org
Wed Nov 21 18:20:37 CET 2007


Author: cwittich
Date: Wed Nov 21 20:20:36 2007
New Revision: 30640

URL: http://svn.reactos.org/svn/reactos?rev=30640&view=rev
Log:
fix some format strings

Modified:
    trunk/reactos/drivers/filesystems/vfat/fcb.c

Modified: trunk/reactos/drivers/filesystems/vfat/fcb.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/vfat/fcb.c?rev=30640&r1=30639&r2=30640&view=diff
==============================================================================
--- trunk/reactos/drivers/filesystems/vfat/fcb.c (original)
+++ trunk/reactos/drivers/filesystems/vfat/fcb.c Wed Nov 21 20:20:36 2007
@@ -181,7 +181,7 @@
 	ULONG ShortIndex;
 	PVFATFCB tmpFcb;
 
-	DPRINT ("releasing FCB at %x: %wZ, refCount:%d\n",
+	DPRINT ("releasing FCB at %p: %wZ, refCount:%d\n",
 		pFCB,
 		&pFCB->PathNameU,
 		pFCB->RefCount);
@@ -562,7 +562,7 @@
 	fileObject->SectionObjectPointer = &fcb->SectionObjectPointers;
 	fileObject->FsContext = fcb;
 	fileObject->FsContext2 = newCCB;
-	DPRINT ("file open: fcb:%x PathName:%wZ\n", fcb, &fcb->PathNameU);
+	DPRINT ("file open: fcb:%p PathName:%wZ\n", fcb, &fcb->PathNameU);
 
 	return  STATUS_SUCCESS;
 }
@@ -590,7 +590,7 @@
 	ASSERT(pDirectoryFCB);
 	ASSERT(FileToFindU);
 
-	DPRINT ("vfatDirFindFile(VCB:%08x, dirFCB:%08x, File:%wZ)\n",
+	DPRINT ("vfatDirFindFile(VCB:%p, dirFCB:%p, File:%wZ)\n",
 		pDeviceExt,
 		pDirectoryFCB,
 		FileToFindU);
@@ -666,7 +666,7 @@
 	PWCHAR curr, prev, last;
 	ULONG Length;
 
-	DPRINT ("vfatGetFCBForFile (%x,%x,%x,%wZ)\n",
+	DPRINT ("vfatGetFCBForFile (%p,%p,%p,%wZ)\n",
 		pVCB,
 		pParentFCB,
 		pFCB,




More information about the Ros-diffs mailing list