Silence some debug messages

svn path=/trunk/; revision=4043
This commit is contained in:
Gé van Geldorp 2003-01-19 01:13:04 +00:00
parent 15128f6053
commit 14fc3556c8
3 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
/* $Id: create.c,v 1.14 2002/09/08 10:22:11 chorns Exp $
/* $Id: create.c,v 1.15 2003/01/19 01:13:04 gvg Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -37,7 +37,7 @@ NpfsCreate(PDEVICE_OBJECT DeviceObject,
KIRQL oldIrql;
ULONG Disposition;
DPRINT1("NpfsCreate(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
DPRINT("NpfsCreate(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
IoStack = IoGetCurrentIrpStackLocation(Irp);
@ -199,7 +199,7 @@ NpfsCreateNamedPipe(PDEVICE_OBJECT DeviceObject,
PNPFS_PIPE current;
PIO_PIPE_CREATE_BUFFER Buffer;
DPRINT1("NpfsCreateNamedPipe(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
DPRINT("NpfsCreateNamedPipe(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
IoStack = IoGetCurrentIrpStackLocation(Irp);
@ -343,7 +343,7 @@ NpfsClose(PDEVICE_OBJECT DeviceObject,
PNPFS_PIPE_DATA Current;
DPRINT1("NpfsClose(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
DPRINT("NpfsClose(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
IoStack = IoGetCurrentIrpStackLocation(Irp);
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;

View file

@ -1,4 +1,4 @@
/* $Id: create.c,v 1.59 2003/01/15 21:24:35 chorns Exp $
/* $Id: create.c,v 1.60 2003/01/19 01:13:04 gvg Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -13,7 +13,7 @@
#include <k32.h>
#define DBG
#define NDEBUG
#include <kernel32/kernel32.h>
/* FUNCTIONS ****************************************************************/

View file

@ -74,7 +74,7 @@ CcSetFileSizes (IN PFILE_OBJECT FileObject,
PLIST_ENTRY current_entry;
PCACHE_SEGMENT current;
DPRINT1("CcSetFileSizes(FileObject %x, FileSizes %x)\n",
DPRINT("CcSetFileSizes(FileObject %x, FileSizes %x)\n",
FileObject, FileSizes);
DPRINT("AllocationSize %d, FileSize %d, ValidDataLength %d\n",
(ULONG)FileSizes->AllocationSize.QuadPart,
@ -83,7 +83,7 @@ CcSetFileSizes (IN PFILE_OBJECT FileObject,
Bcb = ((REACTOS_COMMON_FCB_HEADER*)FileObject->FsContext)->Bcb;
DPRINT1("Bcb 0x%.08x\n", Bcb);
DPRINT("Bcb 0x%.08x\n", Bcb);
KeAcquireSpinLock(&Bcb->BcbLock, &oldirql);