Module: wine Branch: master Commit: 643f55ababe7f90bbfe2afb93550dd598c5a3541 URL: http://source.winehq.org/git/wine.git/?a=commit;h=643f55ababe7f90bbfe2afb935...
Author: Michael Stefaniuc mstefani@redhat.de Date: Thu Feb 4 00:20:37 2010 +0100
msi: Don't print the function name twice in a WARN.
---
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; }