Commit a39ea2e8 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msi: Add a trailing '\n' to Wine traces.

parent 69f83a6f
...@@ -660,7 +660,7 @@ static UINT msi_load_summary_properties( MSIPACKAGE *package ) ...@@ -660,7 +660,7 @@ static UINT msi_load_summary_properties( MSIPACKAGE *package )
&count, NULL, NULL, NULL ); &count, NULL, NULL, NULL );
if (rc != ERROR_SUCCESS) if (rc != ERROR_SUCCESS)
{ {
WARN("Unable to query page count: %d", rc); WARN("Unable to query page count: %d\n", rc);
goto done; goto done;
} }
...@@ -960,7 +960,7 @@ UINT WINAPI MsiOpenPackageExW(LPCWSTR szPackage, DWORD dwOptions, MSIHANDLE *phP ...@@ -960,7 +960,7 @@ UINT WINAPI MsiOpenPackageExW(LPCWSTR szPackage, DWORD dwOptions, MSIHANDLE *phP
if ( !*szPackage ) if ( !*szPackage )
{ {
FIXME("Should create an empty database and package."); FIXME("Should create an empty database and package\n");
return ERROR_FUNCTION_FAILED; 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