https://git.reactos.org/?p=reactos.git;a=commitdiff;h=74adcadbd08f782cc43017...
commit 74adcadbd08f782cc43017b12378611bbff50836 Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Sun Jul 29 17:39:09 2018 +0200 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Sun Jul 29 17:39:09 2018 +0200
[SHELL32] Silence a noisy DPRINT. --- dll/win32/shell32/wine/shellpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/win32/shell32/wine/shellpath.c b/dll/win32/shell32/wine/shellpath.c index 2637c179d5..d1a3ada74e 100644 --- a/dll/win32/shell32/wine/shellpath.c +++ b/dll/win32/shell32/wine/shellpath.c @@ -1510,7 +1510,7 @@ BOOL _SHGetUserProfileDirectoryW(HANDLE hToken, LPWSTR szPath, LPDWORD lpcchPath { result = GetUserProfileDirectoryW(hToken, szPath, lpcchPath); } - DbgPrint("_SHGetUserProfileDirectoryW returning %S\n", szPath); + TRACE("_SHGetUserProfileDirectoryW returning %S\n", szPath); return result; }