[2/7] msi: Print a warning instead of a fixme if we fail to open the database.

Hans Leidekker hans at codeweavers.com
Tue Aug 23 07:41:27 CDT 2011


---
 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;
     }
 
-- 
1.7.4.1







More information about the wine-patches mailing list