winepulse.drv: Add a missing linebreak to ERR message.

Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Sebastian Lackner 2015-11-03 01:25:21 +01:00 committed by Alexandre Julliard
parent e1933acb7b
commit 64e83ddcad
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,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);