Commit b965a74e authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Downgrade an ERR to a TRACE.

parent 7b858882
...@@ -558,7 +558,7 @@ UINT ACTION_RemoveFiles( MSIPACKAGE *package ) ...@@ -558,7 +558,7 @@ UINT ACTION_RemoveFiles( MSIPACKAGE *package )
TRACE("removing %s\n", debugstr_w(file->File) ); TRACE("removing %s\n", debugstr_w(file->File) );
if ( !DeleteFileW( file->TargetPath ) ) if ( !DeleteFileW( file->TargetPath ) )
ERR("failed to delete %s\n", debugstr_w(file->TargetPath) ); TRACE("failed to delete %s\n", debugstr_w(file->TargetPath));
file->state = msifs_missing; file->state = msifs_missing;
/* the UI chunk */ /* the UI chunk */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment