msi: Print a warning instead of a fixme if we fail to open the database.
This commit is contained in:
parent
763e2f3edc
commit
0f67869d84
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue