kernel32: Print in the CopyFileW trace also fail_if_exists parameter.

This commit is contained in:
Dmitry Timoshkov 2012-06-07 17:05:23 +09:00 committed by Alexandre Julliard
parent 4c6803d858
commit 99c10bd7a1
1 changed files with 1 additions and 1 deletions

View File

@ -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)