Hans Leidekker : msi: Print a warning instead of a fixme if we fail to open the database.

Alexandre Julliard julliard at winehq.org
Tue Aug 23 12:45:07 CDT 2011


Module: wine
Branch: master
Commit: 0f67869d8402150ab9a555b4d705e137faf52483
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0f67869d8402150ab9a555b4d705e137faf52483

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Tue Aug 23 14:41:27 2011 +0200

msi: Print a warning instead of a fixme if we fail to open the database.

---

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

diff --git a/dlls/msi/database.c b/dlls/msi/database.c
index a3e61d9..3813f30 100644
--- a/dlls/msi/database.c
+++ b/dlls/msi/database.c
@@ -373,7 +373,7 @@ UINT MSI_OpenDatabaseW(LPCWSTR szDBPath, LPCWSTR szPersist, MSIDATABASE **pdb)
 
     if( FAILED( r ) || !stg )
     {
-        FIXME("open failed r = %08x for %s\n", r, debugstr_w(szDBPath));
+        WARN("open failed r = %08x for %s\n", r, debugstr_w(szDBPath));
         return ERROR_FUNCTION_FAILED;
     }
 




More information about the wine-cvs mailing list