summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2021-01-21 13:16:53 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2021-01-21 14:11:37 +1000
commit1955a2645670eeea83d6d163653749249cd839f2 (patch)
treea7610fad81068a22c13ba20bf50ead2296278eab
parent9510dedad875099c32993246188050ea73ab1a9f (diff)
downloadxorg-app-xkbcomp-1955a2645670eeea83d6d163653749249cd839f2.tar.gz
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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/symbols.c b/symbols.c
index 2b24f7e..21c92be 100644
--- a/symbols.c
+++ b/symbols.c
@@ -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);
}
}