[KERNEL32]
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Wed, 28 Aug 2013 10:08:41 +0000 (10:08 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Wed, 28 Aug 2013 10:08:41 +0000 (10:08 +0000)
Cut a very loong DPRINT1 into pieces, to workaround the length limitation of debug strings I get.

svn path=/trunk/; revision=59849

reactos/dll/win32/kernel32/client/proc.c

index 7c015d2..e36dbc9 100644 (file)
@@ -629,8 +629,14 @@ BasePushProcessParameters(IN ULONG ParameterFlags,
 
     /* Create the Parameter Block */
     ProcessParameters = NULL;
 
     /* Create the Parameter Block */
     ProcessParameters = NULL;
-    DPRINT1("Image Name: %wZ Dll Path: %wZ current directory: %wZ, CmdLine: %wZ, Title: %wZ, Desktop: %wZ, Shell: %wZ, Runtime: %wZ\n",
-        &ImageName, &DllPath, &CurrentDirectory, &CommandLine, &Title, &Desktop, &Shell, &Runtime);
+    DPRINT1("ImageName: '%wZ'\n", &ImageName);
+    DPRINT1("DllPath  : '%wZ'\n", &DllPath);
+    DPRINT1("CurDir   : '%wZ'\n", &CurrentDirectory);
+    DPRINT1("CmdLine  : '%wZ'\n", &CommandLine);
+    DPRINT1("Title    : '%wZ'\n", &Title);
+    DPRINT1("Desktop  : '%wZ'\n", &Desktop);
+    DPRINT1("Shell    : '%wZ'\n", &Shell);
+    DPRINT1("Runtime  : '%wZ'\n", &Runtime);
     Status = RtlCreateProcessParameters(&ProcessParameters,
                                         &ImageName,
                                         &DllPath,
     Status = RtlCreateProcessParameters(&ProcessParameters,
                                         &ImageName,
                                         &DllPath,