msi: Use the source name of the msi package when it fails to copy.

This commit is contained in:
Mike McCormack 2006-04-26 14:14:48 +09:00 committed by Alexandre Julliard
parent 16ee9aba88
commit 4a7bb647bf
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ static LPCWSTR copy_package_to_temp( LPCWSTR szPackage, LPWSTR filename )
if( !CopyFileW( szPackage, filename, FALSE ) )
{
ERR("failed to copy package to temp path %s\n", debugstr_w(filename) );
ERR("failed to copy package %s\n", debugstr_w(szPackage) );
return szPackage;
}