From 14fc3556c86357624f864bdeb8a3ad675a01bd6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Sun, 19 Jan 2003 01:13:04 +0000 Subject: [PATCH] Silence some debug messages svn path=/trunk/; revision=4043 --- reactos/drivers/fs/np/create.c | 8 ++++---- reactos/lib/kernel32/process/create.c | 4 ++-- reactos/ntoskrnl/cc/misc.c | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/reactos/drivers/fs/np/create.c b/reactos/drivers/fs/np/create.c index ba79d5a73e1..a5e04dc262b 100644 --- a/reactos/drivers/fs/np/create.c +++ b/reactos/drivers/fs/np/create.c @@ -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; diff --git a/reactos/lib/kernel32/process/create.c b/reactos/lib/kernel32/process/create.c index dd7eafc568b..dcc8ec55113 100644 --- a/reactos/lib/kernel32/process/create.c +++ b/reactos/lib/kernel32/process/create.c @@ -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 -#define DBG +#define NDEBUG #include /* FUNCTIONS ****************************************************************/ diff --git a/reactos/ntoskrnl/cc/misc.c b/reactos/ntoskrnl/cc/misc.c index 4ddeb66a3f5..0fbbbb9e52b 100644 --- a/reactos/ntoskrnl/cc/misc.c +++ b/reactos/ntoskrnl/cc/misc.c @@ -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);