Hans Leidekker : msi: Remove an incorrect error trace.
Module: wine Branch: master Commit: 05a95f2e9224e242efcf6bc2b07f23f7cce342f4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=05a95f2e9224e242efcf6bc2b0... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Thu Dec 23 17:09:06 2010 +0100 msi: Remove an incorrect error trace. --- dlls/msi/package.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/dlls/msi/package.c b/dlls/msi/package.c index c81ddad..c7e1f98 100644 --- a/dlls/msi/package.c +++ b/dlls/msi/package.c @@ -59,8 +59,7 @@ static void remove_tracked_tempfiles( MSIPACKAGE *package ) list_remove( &temp->entry ); TRACE("deleting temp file %s\n", debugstr_w( temp->Path )); - if (!DeleteFileW( temp->Path )) - ERR("failed to delete %s\n", debugstr_w( temp->Path )); + DeleteFileW( temp->Path ); msi_free( temp->Path ); msi_free( temp ); }
participants (1)
-
Alexandre Julliard