msi: Don't print the function name twice in a WARN.

Michael Stefaniuc mstefani at redhat.de
Wed Feb 3 17:20:37 CST 2010


---
Found in the winefixme report database with:
select * from message where text like function || "%";


 dlls/msi/msiquery.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msi/msiquery.c b/dlls/msi/msiquery.c
index ddbb28d..b673832 100644
--- a/dlls/msi/msiquery.c
+++ b/dlls/msi/msiquery.c
@@ -831,7 +831,7 @@ UINT WINAPI MsiDatabaseCommit( MSIHANDLE hdb )
             return ERROR_INVALID_HANDLE;
 
         IWineMsiRemoteDatabase_Release( remote_database );
-        WARN("MsiDatabaseCommit not allowed during a custom action!\n");
+        WARN("not allowed during a custom action!\n");
 
         return ERROR_SUCCESS;
     }
-- 
1.6.6.1



More information about the wine-patches mailing list