mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-25 01:40:19 -05:00
misc: replace all explicit zero-initializers with empty initializers
This commit is contained in:
parent
d67f437458
commit
c96a0b3b3c
5 changed files with 15 additions and 15 deletions
2
config.c
2
config.c
|
|
@ -506,7 +506,7 @@ verify_key_combo(const struct config *conf, const char *combo, const char *path,
|
|||
|
||||
struct xkb_context *ctx = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
||||
struct xkb_keymap *keymap = xkb_keymap_new_from_names(
|
||||
ctx, &(struct xkb_rule_names){0}, XKB_KEYMAP_COMPILE_NO_FLAGS);
|
||||
ctx, &(struct xkb_rule_names){}, XKB_KEYMAP_COMPILE_NO_FLAGS);
|
||||
|
||||
bool valid_combo = input_parse_key_binding(keymap, combo, NULL);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue