From 67189b431dfa944cf1ce7bf09c75db990f7cdb08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Mon, 5 Jun 2006 16:41:03 +0000 Subject: [PATCH] Change some DPRINT1 to DPRINT, as they were prior revision 21880. svn path=/trunk/; revision=22239 --- reactos/lib/rtl/process.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/lib/rtl/process.c b/reactos/lib/rtl/process.c index e75fd9a4fba..075d616a6de 100644 --- a/reactos/lib/rtl/process.c +++ b/reactos/lib/rtl/process.c @@ -76,7 +76,7 @@ RtlpInitEnvironment(HANDLE ProcessHandle, ULONG Size; PWCHAR Environment = 0; - DPRINT1("RtlpInitEnvironment (hProcess: %p, Peb: %p Params: %p)\n", + DPRINT("RtlpInitEnvironment (hProcess: %p, Peb: %p Params: %p)\n", ProcessHandle, Peb, ProcessParameters); /* Give the caller 1MB if he requested it */ @@ -106,7 +106,7 @@ RtlpInitEnvironment(HANDLE ProcessHandle, /* Calculate the size of the block */ EnviroSize = (ULONG)((ULONG_PTR)Environment - (ULONG_PTR)ProcessParameters->Environment); - DPRINT1("EnvironmentSize %ld\n", EnviroSize); + DPRINT("EnvironmentSize %ld\n", EnviroSize); /* Allocate and Initialize new Environment Block */ Size = EnviroSize; @@ -133,8 +133,8 @@ RtlpInitEnvironment(HANDLE ProcessHandle, ProcessParameters->Environment = BaseAddress; } - DPRINT1("EnvironmentPointer %p\n", BaseAddress); - DPRINT1("Ppb->MaximumLength 0x%lx\n", ProcessParameters->MaximumLength); + DPRINT("EnvironmentPointer %p\n", BaseAddress); + DPRINT("Ppb->MaximumLength 0x%lx\n", ProcessParameters->MaximumLength); /* Now allocate space for the Parameter Block */ BaseAddress = NULL;