rtworkq: Change RtwqPutWorkItem() trace format for consistency.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2020-03-02 13:36:51 +03:00 committed by Alexandre Julliard
parent bd3ae4a0c4
commit b464695ab2

View file

@ -1380,7 +1380,7 @@ HRESULT WINAPI RtwqInvokeCallback(IRtwqAsyncResult *result)
HRESULT WINAPI RtwqPutWorkItem(DWORD queue, LONG priority, IRtwqAsyncResult *result)
{
TRACE("%d, %d, %p.\n", queue, priority, result);
TRACE("%#x, %d, %p.\n", queue, priority, result);
return queue_put_work_item(queue, priority, result);
}