diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2021-01-21 13:20:40 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2021-01-21 14:12:55 +1000 |
commit | 80398db098b2a2214c5bef28d09cefd58beac43d (patch) | |
tree | 67fe9ed25df870a7aa1e393737fc62bc5ad220ca /keycodes.c | |
parent | 1955a2645670eeea83d6d163653749249cd839f2 (diff) |
keycodes: downgrade the >255 keycode warning to an info
This warning will be triggered all the time now that xkeyboard-config has
started adding keycodes > 255. Downgrade to an info, there's nothing the user
can do about this warning anyway.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'keycodes.c')
-rw-r--r-- | keycodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -334,7 +334,7 @@ AddKeyName(KeyNamesInfo * info, { if (!high_keycode_warned && warningLevel > 1) { - WARN("Unsupported high keycode %d for name <%s> ignored\n", + INFO("Unsupported high keycode %d for name <%s> ignored\n", kc, name); ACTION("X11 cannot support keycodes above 255.\n"); ACTION("This warning only shows for the first high keycode.\n"); @@ -598,7 +598,7 @@ HandleKeycodeDef(KeycodeDef * stmt, unsigned merge, KeyNamesInfo * info) { if (!high_keycode_warned && warningLevel > 1) { - WARN("Unsupported high keycode %d for name <%s> ignored\n", + INFO("Unsupported high keycode %d for name <%s> ignored\n", code, stmt->name); ACTION("X11 cannot support keycodes above 255.\n"); ACTION("This warning only shows for the first high keycode.\n"); |