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/c…
==============================================================================
--- 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/r…
==============================================================================
--- 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/v…
==============================================================================
--- 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)
{