kernel32: Print in the CopyFileW trace also fail_if_exists parameter.

Dmitry Timoshkov dmitry at baikal.ru
Thu Jun 7 03:05:23 CDT 2012


---
 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 e376def..a326058 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)
-- 
1.7.10.1




More information about the wine-patches mailing list