[c,printf] fix wlog format string to match arguments

This commit is contained in:
akallabeth
2026-01-16 11:39:37 +01:00
parent 74cd63fa99
commit 5242eff693

View File

@@ -452,7 +452,9 @@ static void check_open_close_receive(DVCMAN_CHANNEL* channel)
WINPR_ASSERT(cb);
if (!cb->OnOpen || !cb->OnClose || !cb->OnDataReceived)
WLog_VRB(TAG, "{%s:%" PRIu32 "} OnOpen=%p, OnClose=%p, OnDataReceived=%p", name, id,
cb->OnOpen, cb->OnClose, cb->OnDataReceived);
WINPR_CXX_COMPAT_CAST(const void*, cb->OnOpen),
WINPR_CXX_COMPAT_CAST(const void*, cb->OnClose),
WINPR_CXX_COMPAT_CAST(const void*, cb->OnDataReceived));
}
static UINT dvcman_call_on_receive(DVCMAN_CHANNEL* channel, wStream* data)