Nikolay Sivov : rtworkq: Change RtwqPutWorkItem() trace format for consistency.

Alexandre Julliard julliard at winehq.org
Mon Mar 2 16:22:23 CST 2020


Module: wine
Branch: master
Commit: b464695ab2a61225e0478b03017d191620f1ecd5
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b464695ab2a61225e0478b03017d191620f1ecd5

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Mon Mar  2 13:36:51 2020 +0300

rtworkq: Change RtwqPutWorkItem() trace format for consistency.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/rtworkq/queue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/rtworkq/queue.c b/dlls/rtworkq/queue.c
index 70af6a7658..85e84d46d6 100644
--- a/dlls/rtworkq/queue.c
+++ b/dlls/rtworkq/queue.c
@@ -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);
 }




More information about the wine-cvs mailing list