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

Alexandre Julliard julliard at winehq.org
Tue Dec 18 07:34:46 CST 2007


Module: wine
Branch: master
Commit: a39ea2e8ba0659084d83efba133b74821bf2937a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a39ea2e8ba0659084d83efba133b74821bf2937a

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Dec 18 09:47:22 2007 +0100

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

---

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




More information about the wine-cvs mailing list