[ros-diffs] [hpoussin] 22239: Change some DPRINT1 to DPRINT, as they were prior revision 21880.

hpoussin at svn.reactos.org hpoussin at svn.reactos.org
Mon Jun 5 18:41:03 CEST 2006


Author: hpoussin
Date: Mon Jun  5 20:41:03 2006
New Revision: 22239

URL: http://svn.reactos.ru/svn/reactos?rev=22239&view=rev
Log:
Change some DPRINT1 to DPRINT, as they were prior revision 21880.

Modified:
    trunk/reactos/lib/rtl/process.c

Modified: trunk/reactos/lib/rtl/process.c
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/lib/rtl/process.c?rev=22239&r1=22238&r2=22239&view=diff
==============================================================================
--- trunk/reactos/lib/rtl/process.c (original)
+++ trunk/reactos/lib/rtl/process.c Mon Jun  5 20:41:03 2006
@@ -76,7 +76,7 @@
     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 @@
         /* 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 @@
         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;




More information about the Ros-diffs mailing list