From 5beaebef93386c41e560e60820d8c3a6b1146969 Mon Sep 17 00:00:00 2001 From: Claudiu Mihail Date: Fri, 2 Sep 2011 19:56:58 +0000 Subject: [PATCH] [shell32.dll] - replace DbgPrints with TRACE. svn path=/branches/shell32_new-bringup/; revision=53534 --- dll/win32/shell32/shlexec.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dll/win32/shell32/shlexec.cpp b/dll/win32/shell32/shlexec.cpp index d6a82f7cc9b..56be7910887 100644 --- a/dll/win32/shell32/shlexec.cpp +++ b/dll/win32/shell32/shlexec.cpp @@ -189,12 +189,9 @@ static BOOL SHELL_ArgifyW(WCHAR* out, DWORD len, const WCHAR* fmt, const WCHAR* DWORD used = 0; bool tildeEffect = false; - TRACE("%p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt), + TRACE("Before parsing: %p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt), debugstr_w(lpFile), pidl, args); - DbgPrint("[shell32, SHELL_ArgifyW] Processing %ws\n", args); - DbgPrint("[shell32, SHELL_ArgifyW] fmt = %ws\n", fmt); - while (*fmt) { if (*fmt == '%') @@ -391,7 +388,8 @@ static BOOL SHELL_ArgifyW(WCHAR* out, DWORD len, const WCHAR* fmt, const WCHAR* if (out_len) *out_len = used; - DbgPrint("[shell32, SHELL_ArgifyW] Done result = %ws\n", out); + TRACE("After parsing: %p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt), + debugstr_w(lpFile), pidl, args); return found_p1; }