kernel32: Add a trailing '\n' to a MESSAGE trace

Frédéric Delanoy frederic.delanoy at gmail.com
Thu Jul 2 02:29:18 CDT 2009


Last time I submitted this (pretty trivial) patch, it got ignored.
If it's in a bad format, please let me know!

Frédéric

---
 dlls/kernel32/process.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c
index 83d1aa5..7dca938 100644
--- a/dlls/kernel32/process.c
+++ b/dlls/kernel32/process.c
@@ -1096,7 +1096,7 @@ void CDECL __wine_kernel_init(void)
             }
         }
         FormatMessageA( FORMAT_MESSAGE_FROM_SYSTEM, NULL, error, 0, msg, sizeof(msg), NULL );
-        MESSAGE( "wine: could not load %s: %s", debugstr_w(main_exe_name), msg );
+        MESSAGE( "wine: could not load %s: %s\n", debugstr_w(main_exe_name), msg );
         ExitProcess( error );
     }
 
--
1.6.3.3 



More information about the wine-patches mailing list