Module: wine Branch: master Commit: 99c10bd7a1d9ffcfb7a69a8db8554d986c4e4a3c URL: http://source.winehq.org/git/wine.git/?a=commit;h=99c10bd7a1d9ffcfb7a69a8db8...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Thu Jun 7 17:05:23 2012 +0900
kernel32: Print in the CopyFileW trace also fail_if_exists parameter.
---
dlls/kernel32/path.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
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)