ntdll: Convert an ERR to a WARN when wait is triggered while destroying threadpool object.

Sebastian Lackner sebastian at fds-team.de
Thu Aug 18 18:03:31 CDT 2016


Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
---
 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 799245c..5d5b49d 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.9.0



More information about the wine-patches mailing list