diff --git a/reactos/ntoskrnl/io/iomgr.c b/reactos/ntoskrnl/io/iomgr.c index e83ecc32916..52a8a9d0c02 100644 --- a/reactos/ntoskrnl/io/iomgr.c +++ b/reactos/ntoskrnl/io/iomgr.c @@ -113,7 +113,7 @@ IopInitLookasideLists(VOID) { /* Get the PRCB for this CPU */ Prcb = ((PKPCR)(KPCR_BASE + i * PAGE_SIZE))->Prcb; - DPRINT1("Setting up lookaside for CPU: %x, PRCB: %p\n", i, Prcb); + DPRINT("Setting up lookaside for CPU: %x, PRCB: %p\n", i, Prcb); /* Set the Large IRP List */ Prcb->PPLookasideList[LookasideLargeIrpList].L = &IoLargeIrpLookaside.L; @@ -182,7 +182,7 @@ IopInitLookasideLists(VOID) Prcb->PPLookasideList[LookasideCompletionList].P = &CurrentList->L; } - DPRINT1("Done allocation\n"); + DPRINT("Done allocation\n"); } VOID @@ -411,10 +411,10 @@ IoInit3(VOID) IoCreateArcNames(); /* Create the SystemRoot symbolic link */ - CPRINT("CommandLine: %s\n", (PCHAR)KeLoaderBlock.CommandLine); + DPRINT("CommandLine: %s\n", (PCHAR)KeLoaderBlock.CommandLine); Status = IoCreateSystemRootLink((PCHAR)KeLoaderBlock.CommandLine); if (!NT_SUCCESS(Status)) { - DbgPrint("IoCreateSystemRootLink FAILED: (0x%x) - ", Status); + CPRINT("IoCreateSystemRootLink FAILED: (0x%x) - ", Status); KEBUGCHECK(INACCESSIBLE_BOOT_DEVICE); } diff --git a/reactos/ntoskrnl/kdbg/kdb_cli.c b/reactos/ntoskrnl/kdbg/kdb_cli.c index bb96f7e2c87..19528192efe 100644 --- a/reactos/ntoskrnl/kdbg/kdb_cli.c +++ b/reactos/ntoskrnl/kdbg/kdb_cli.c @@ -2278,7 +2278,7 @@ KdbpCliInterpretInitFile() CHAR c; /* Execute the commands in the init file */ - DbgPrint("KDB: Executing KDBinit file...\n"); + DPRINT("KDB: Executing KDBinit file...\n"); p1 = KdbInitFileBuffer; while (p1[0] != '\0') { @@ -2309,7 +2309,7 @@ KdbpCliInterpretInitFile() while (p1[0] == '\r' || p1[0] == '\n') p1++; } - DbgPrint("KDB: KDBinit executed\n"); + DPRINT("KDB: KDBinit executed\n"); } /*!\brief Called when KDB is initialized