Fixed broken format string

This commit is contained in:
akallabeth 2022-01-21 17:05:01 +01:00 committed by akallabeth
parent ae49581673
commit 855c9d3f4c

View File

@ -1111,7 +1111,7 @@ BOOL freerdp_client_send_button_event(rdpClientContext* cctx, BOOL relative, UIN
{
cctx->lastX += x;
cctx->lastY += y;
WLog_WARN(TAG, "Relative mouse input but channel % not available, sending absolute!",
WLog_WARN(TAG, "Relative mouse input but channel %s not available, sending absolute!",
AINPUT_DVC_CHANNEL_NAME);
}
else
@ -1156,7 +1156,7 @@ BOOL freerdp_client_send_extended_button_event(rdpClientContext* cctx, BOOL rela
{
cctx->lastX += x;
cctx->lastY += y;
WLog_WARN(TAG, "Relative mouse input but channel % not available, sending absolute!",
WLog_WARN(TAG, "Relative mouse input but channel %s not available, sending absolute!",
AINPUT_DVC_CHANNEL_NAME);
}
else