From d085042ab95c62d98276893db16ce16508fc518a Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Fri, 19 Aug 2016 01:03:31 +0200 Subject: [PATCH] ntdll: Convert an ERR to a WARN when wait is triggered while destroying threadpool object. Signed-off-by: Sebastian Lackner Signed-off-by: Alexandre Julliard --- dlls/ntdll/threadpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/threadpool.c b/dlls/ntdll/threadpool.c index 799245cfe68..5d5b49d5ee8 100644 --- a/dlls/ntdll/threadpool.c +++ b/dlls/ntdll/threadpool.c @@ -1432,7 +1432,7 @@ static void CALLBACK waitqueue_thread_proc( void *param ) tp_object_submit( wait, TRUE ); } else - ERR("wait object %p triggered while object was destroyed\n", wait); + WARN("wait object %p triggered while object was destroyed\n", wait); } /* Release temporary references to wait objects. */ -- 2.11.4.GIT