mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 08:54:38 +09:00
Fixed broken format string
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user