Author: hbelusca Date: Wed Aug 28 10:08:41 2013 New Revision: 59849
URL: http://svn.reactos.org/svn/reactos?rev=59849&view=rev Log: [KERNEL32] Cut a very loong DPRINT1 into pieces, to workaround the length limitation of debug strings I get.
Modified: trunk/reactos/dll/win32/kernel32/client/proc.c
Modified: trunk/reactos/dll/win32/kernel32/client/proc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/client/p... ============================================================================== --- trunk/reactos/dll/win32/kernel32/client/proc.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/kernel32/client/proc.c [iso-8859-1] Wed Aug 28 10:08:41 2013 @@ -629,8 +629,14 @@
/* 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,