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

This commit is contained in:
Hans Leidekker 2011-08-23 14:41:27 +02:00 committed by Alexandre Julliard
parent 763e2f3edc
commit 0f67869d84
1 changed files with 1 additions and 1 deletions

View File

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