Module: wine Branch: master Commit: 0f67869d8402150ab9a555b4d705e137faf52483 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0f67869d8402150ab9a555b4d7...
Author: Hans Leidekker hans@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; }