mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
Change some DPRINT1 to DPRINT, as they were prior revision 21880.
svn path=/trunk/; revision=22239
This commit is contained in:
parent
a10b3f2380
commit
67189b431d
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue