Module: wine Branch: master Commit: 5e7b4bbe5760ab247c8170dc73e2ffca2d5423f6 URL: https://gitlab.winehq.org/wine/wine/-/commit/5e7b4bbe5760ab247c8170dc73e2ffc...
Author: Huw Davies huw@codeweavers.com Date: Mon Dec 12 13:29:38 2022 +0000
winemac: Fix printf format warnings in event.c.
---
dlls/winemac.drv/event.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winemac.drv/event.c b/dlls/winemac.drv/event.c index 11dcc1123a6..e4f76e2b0e1 100644 --- a/dlls/winemac.drv/event.c +++ b/dlls/winemac.drv/event.c @@ -519,8 +519,8 @@ NTSTATUS macdrv_MsgWaitForMultipleObjectsEx(DWORD count, const HANDLE *handles, struct macdrv_thread_data *data = macdrv_thread_data(); macdrv_event_mask event_mask = get_event_mask(mask);
- TRACE("count %d, handles %p, timeout %p, mask %x, flags %x\n", count, - handles, timeout, mask, flags); + TRACE("count %d, handles %p, timeout %p, mask %x, flags %x\n", (unsigned int)count, + handles, timeout, (unsigned int)mask, (unsigned int)flags);
if (!data) {