[ros-diffs] [cwittich] 30630: fix format strings

cwittich at svn.reactos.org cwittich at svn.reactos.org
Wed Nov 21 16:55:59 CET 2007


Author: cwittich
Date: Wed Nov 21 18:55:58 2007
New Revision: 30630

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

Modified:
    trunk/reactos/drivers/filesystems/npfs/create.c
    trunk/reactos/drivers/filesystems/npfs/rw.c
    trunk/reactos/drivers/filesystems/npfs/volume.c

Modified: trunk/reactos/drivers/filesystems/npfs/create.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs/create.c?rev=30630&r1=30629&r2=30630&view=diff
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs/create.c (original)
+++ trunk/reactos/drivers/filesystems/npfs/create.c Wed Nov 21 18:55:58 2007
@@ -532,7 +532,7 @@
 	Ccb->PipeState = FILE_PIPE_LISTENING_STATE;
 	Ccb->OtherSide = NULL;
 
-	DPRINT("CCB: %x\n", Ccb);
+	DPRINT("CCB: %p\n", Ccb);
 
 	KeInitializeEvent(&Ccb->ConnectEvent, SynchronizationEvent, FALSE);
 	KeInitializeEvent(&Ccb->ReadEvent, SynchronizationEvent, FALSE);
@@ -718,7 +718,7 @@
 		return STATUS_SUCCESS;
 	}
 
-	DPRINT("CCB %x\n", Ccb);
+	DPRINT("CCB %p\n", Ccb);
 	Fcb = Ccb->Fcb;
 
 	DPRINT("Closing pipe %wZ\n", &Fcb->PipeName);

Modified: trunk/reactos/drivers/filesystems/npfs/rw.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs/rw.c?rev=30630&r1=30629&r2=30630&view=diff
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs/rw.c (original)
+++ trunk/reactos/drivers/filesystems/npfs/rw.c Wed Nov 21 18:55:58 2007
@@ -54,7 +54,7 @@
 	PNPFS_CCB Ccb;
 	BOOLEAN Complete = FALSE;
 
-	DPRINT("NpfsReadWriteCancelRoutine(DeviceObject %x, Irp %x)\n", DeviceObject, Irp);
+	DPRINT("NpfsReadWriteCancelRoutine(DeviceObject %p, Irp %p)\n", DeviceObject, Irp);
 
 	IoReleaseCancelSpinLock(Irp->CancelIrql);
 

Modified: trunk/reactos/drivers/filesystems/npfs/volume.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/npfs/volume.c?rev=30630&r1=30629&r2=30630&view=diff
==============================================================================
--- trunk/reactos/drivers/filesystems/npfs/volume.c (original)
+++ trunk/reactos/drivers/filesystems/npfs/volume.c Wed Nov 21 18:55:58 2007
@@ -73,7 +73,7 @@
 	ASSERT(DeviceObject != NULL);
 	ASSERT(Irp != NULL);
 
-	DPRINT("NpfsQueryVolumeInformation(DeviceObject %x, Irp %x)\n",
+	DPRINT("NpfsQueryVolumeInformation(DeviceObject %p, Irp %p)\n",
 		DeviceObject,
 		Irp);
 
@@ -83,7 +83,7 @@
 	SystemBuffer = Irp->AssociatedIrp.SystemBuffer;
 
 	DPRINT("FsInformationClass %d\n", FsInformationClass);
-	DPRINT("SystemBuffer %x\n", SystemBuffer);
+	DPRINT("SystemBuffer %p\n", SystemBuffer);
 
 	switch (FsInformationClass)
 	{




More information about the Ros-diffs mailing list