Commit 0f67869d authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

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

parent 763e2f3e
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment