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

This commit is contained in:
akallabeth
2026-01-16 11:39:44 +01:00
parent b20a1274f0
commit 245e0a5d3f

View File

@@ -177,7 +177,7 @@ static UINT gfxredir_server_receive_pdu(GfxRedirServerContext* context, wStream*
if (end != (beg + header.length))
{
WLog_ERR(TAG, "Unexpected GFXREDIR pdu end: Actual: %d, Expected: %" PRIu32 "", end,
WLog_ERR(TAG, "Unexpected GFXREDIR pdu end: Actual: %" PRIuz ", Expected: %" PRIuz "", end,
(beg + header.length));
Stream_SetPosition(s, (beg + header.length));
}