diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2021-01-21 13:16:53 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2021-01-21 14:11:37 +1000 |
commit | 1955a2645670eeea83d6d163653749249cd839f2 (patch) | |
tree | a7610fad81068a22c13ba20bf50ead2296278eab | |
parent | 9510dedad875099c32993246188050ea73ab1a9f (diff) |
Downgrade the warning for missing symbols to info
In the interest of maintainability, it's easier to include as many keycodes as
possible and then have the symbols mapping specific to the layout. This is
particularly true for evdev where the kernel takes care of device-specifics
and every keyboard has the same set of keycodes anyway.
So let's downgrade this from a warning to a mere info, virtually every
keyboard right now triggers this warning for a number of keys.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | symbols.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2281,8 +2281,7 @@ CompileSymbols(XkbFile * file, XkbFileInfo * result, unsigned merge) char buf[5]; memcpy(buf, xkb->names->keys[i].name, 4); buf[4] = '\0'; - WARN - ("No symbols defined for <%s> (keycode %d)\n", + INFO("No symbols defined for <%s> (keycode %d)\n", buf, i); } } |