diff options
author | Pierre Ossman <ossman@cendio.se> | 2023-08-23 16:51:19 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2023-08-23 16:53:19 +0200 |
commit | c5ad3d6388045cb64b019f96f730e36a10f1d543 (patch) | |
tree | e6342f80c6398eac2cf041d82920326b0308d4c4 /unix/xserver | |
parent | c1a54dd08be79cfa5b45625f4bf8daeb4772f558 (diff) | |
download | tigervnc-c5ad3d6388045cb64b019f96f730e36a10f1d543.tar.gz tigervnc-c5ad3d6388045cb64b019f96f730e36a10f1d543.zip |
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".
Diffstat (limited to 'unix/xserver')
-rw-r--r-- | unix/xserver/hw/vnc/vncInput.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); /* |