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

Francois Gouget fgouget at free.fr
Tue Dec 18 02:47:22 CST 2007


---
 dlls/msi/package.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/package.c b/dlls/msi/package.c
index a678470..79c8764 100644
--- a/dlls/msi/package.c
+++ b/dlls/msi/package.c
@@ -660,7 +660,7 @@ static UINT msi_load_summary_properties( MSIPACKAGE *package )
                                      &count, NULL, NULL, NULL );
     if (rc != ERROR_SUCCESS)
     {
-        WARN("Unable to query page count: %d", rc);
+        WARN("Unable to query page count: %d\n", rc);
         goto done;
     }
 
@@ -960,7 +960,7 @@ UINT WINAPI MsiOpenPackageExW(LPCWSTR szPackage, DWORD dwOptions, MSIHANDLE *phP
 
     if ( !*szPackage )
     {
-        FIXME("Should create an empty database and package.");
+        FIXME("Should create an empty database and package\n");
         return ERROR_FUNCTION_FAILED;
     }
 
-- 
1.5.3.4



More information about the wine-patches mailing list