Fix trivial coding style breaches

This commit is contained in:
Johan Malm 2022-04-04 20:53:36 +01:00
parent 8e1f115486
commit 5b34c81768
22 changed files with 151 additions and 91 deletions

View file

@ -37,7 +37,8 @@ keybind_create(const char *keybind)
k->modifiers |= modifier;
} else {
xkb_keysym_t sym = xkb_keysym_to_lower(
xkb_keysym_from_name(symname, XKB_KEYSYM_CASE_INSENSITIVE));
xkb_keysym_from_name(symname,
XKB_KEYSYM_CASE_INSENSITIVE));
if (sym == XKB_KEY_NoSymbol) {
wlr_log(WLR_ERROR, "unknown keybind (%s)", symname);
free(k);