From 855c9d3f4cfc3e6919f6aa1dcbf7906e905e8a47 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Fri, 21 Jan 2022 17:05:01 +0100 Subject: [PATCH] Fixed broken format string --- client/common/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/common/client.c b/client/common/client.c index ad975ef61..231051cd8 100644 --- a/client/common/client.c +++ b/client/common/client.c @@ -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