From c5ad3d6388045cb64b019f96f730e36a10f1d543 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Wed, 23 Aug 2023 16:51:19 +0200 Subject: [PATCH] Improve log message when mapping keysyms It was a poor choice of words to call these keysyms "unknown" as they are likely perfectly normal keysyms, they just cannot be found in the currently loaded keyboard layout. This log message has confused users, so let's get rid of the "unknown" part. We already use the verb "add" heavily in the other log messages, so let's keep that rather than switch to some for of "map". --- unix/xserver/hw/vnc/vncInput.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/xserver/hw/vnc/vncInput.c b/unix/xserver/hw/vnc/vncInput.c index 16ac25ed..98671b5e 100644 --- a/unix/xserver/hw/vnc/vncInput.c +++ b/unix/xserver/hw/vnc/vncInput.c @@ -470,7 +470,7 @@ static void vncKeysymKeyboardEvent(KeySym keysym, int down) return; } - LOG_INFO("Added unknown keysym 0x%x to keycode %d", + LOG_INFO("Added keysym 0x%x to keycode %d", keysym, keycode); /* -- 2.39.5