From 2900371352b4c3421e4a29c599d816fa7fad3205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Fri, 20 Sep 2013 22:12:08 +0000 Subject: [PATCH] [KERNEL32]: Reenable two dprints to be able to know how programs are launched with which parameters and so on... svn path=/trunk/; revision=60250 --- reactos/dll/win32/kernel32/client/proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/kernel32/client/proc.c b/reactos/dll/win32/kernel32/client/proc.c index 013eb7f157c..9b45b9c09de 100644 --- a/reactos/dll/win32/kernel32/client/proc.c +++ b/reactos/dll/win32/kernel32/client/proc.c @@ -629,10 +629,10 @@ BasePushProcessParameters(IN ULONG ParameterFlags, /* Create the Parameter Block */ ProcessParameters = NULL; - DPRINT("ImageName: '%wZ'\n", &ImageName); + DPRINT1("ImageName: '%wZ'\n", &ImageName); DPRINT("DllPath : '%wZ'\n", &DllPath); DPRINT("CurDir : '%wZ'\n", &CurrentDirectory); - DPRINT("CmdLine : '%wZ'\n", &CommandLine); + DPRINT1("CmdLine : '%wZ'\n", &CommandLine); DPRINT("Title : '%wZ'\n", &Title); DPRINT("Desktop : '%wZ'\n", &Desktop); DPRINT("Shell : '%wZ'\n", &Shell);