Commit d085042a authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

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

parent e3a8c3a8
...@@ -1432,7 +1432,7 @@ static void CALLBACK waitqueue_thread_proc( void *param ) ...@@ -1432,7 +1432,7 @@ static void CALLBACK waitqueue_thread_proc( void *param )
tp_object_submit( wait, TRUE ); tp_object_submit( wait, TRUE );
} }
else 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. */ /* Release temporary references to wait objects. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment