winepulse.drv: Add a trailing '\n' to an ERR() trace.

Francois Gouget fgouget at free.fr
Tue Nov 3 05:06:03 CST 2015


---
 dlls/winepulse.drv/mmdevdrv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/winepulse.drv/mmdevdrv.c b/dlls/winepulse.drv/mmdevdrv.c
index 2c26c99..4863bb3 100644
--- a/dlls/winepulse.drv/mmdevdrv.c
+++ b/dlls/winepulse.drv/mmdevdrv.c
@@ -378,7 +378,7 @@ static HRESULT pulse_connect(void)
     {
         if (!(pulse_thread = CreateThread(NULL, 0, pulse_mainloop_thread, NULL, 0, NULL)))
         {
-            ERR("Failed to create mainloop thread.");
+            ERR("Failed to create mainloop thread.\n");
             return E_FAIL;
         }
         SetThreadPriority(pulse_thread, THREAD_PRIORITY_TIME_CRITICAL);
-- 
2.6.1



More information about the wine-patches mailing list