Mike McCormack : msi: Use the source name of the msi package when it fails to copy.
Module: wine Branch: refs/heads/master Commit: 4a7bb647bf47025b165074c185a26abf6a2ade33 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=4a7bb647bf47025b165074c1... Author: Mike McCormack <mike(a)codeweavers.com> Date: Wed Apr 26 14:14:48 2006 +0900 msi: Use the source name of the msi package when it fails to copy. --- dlls/msi/package.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msi/package.c b/dlls/msi/package.c index aaf93e9..4efe262 100644 --- a/dlls/msi/package.c +++ b/dlls/msi/package.c @@ -444,7 +444,7 @@ static LPCWSTR copy_package_to_temp( LPC 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; }
participants (1)
-
Alexandre Julliard