From 99c10bd7a1d9ffcfb7a69a8db8554d986c4e4a3c Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Thu, 7 Jun 2012 17:05:23 +0900 Subject: [PATCH] kernel32: Print in the CopyFileW trace also fail_if_exists parameter. --- dlls/kernel32/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c index e376def36a1..a326058f2c7 100644 --- a/dlls/kernel32/path.c +++ b/dlls/kernel32/path.c @@ -925,7 +925,7 @@ BOOL WINAPI CopyFileW( LPCWSTR source, LPCWSTR dest, BOOL fail_if_exists ) return FALSE; } - TRACE("%s -> %s\n", debugstr_w(source), debugstr_w(dest)); + TRACE("%s -> %s, %d\n", debugstr_w(source), debugstr_w(dest), fail_if_exists); if ((h1 = CreateFileW(source, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, 0)) == INVALID_HANDLE_VALUE) -- 2.11.4.GIT