From b96d93332b5949f3f76461d01bed96aa1a15dff3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 28 Aug 2013 10:08:41 +0000 Subject: [PATCH] [KERNEL32] 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 | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/kernel32/client/proc.c b/reactos/dll/win32/kernel32/client/proc.c index 7c015d293ce..e36dbc9898a 100644 --- a/reactos/dll/win32/kernel32/client/proc.c +++ b/reactos/dll/win32/kernel32/client/proc.c @@ -629,8 +629,14 @@ BasePushProcessParameters(IN ULONG ParameterFlags, /* 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, -- 2.17.1