From e25fbcee58280103d7d130f9f890eff440a66a07 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 6 Aug 2011 18:19:04 -0700 Subject: [PATCH] Add a missing newline to an ERR message --- primary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/primary.c b/primary.c index 7398431..cd996a4 100644 --- a/primary.c +++ b/primary.c @@ -405,7 +405,7 @@ void DS8Primary_Clear(DS8Primary *This) { PostThreadMessageA(This->thread_id, WM_QUIT, 0, 0); if(WaitForSingleObject(This->thread_hdl, 1000) != WAIT_OBJECT_0) - ERR("Thread wait timed out"); + ERR("Thread wait timed out\n"); CloseHandle(This->thread_hdl); } -- 2.11.4.GIT