diff options
author | Sevz <leohdz172@protonmail.com> | 2022-06-14 15:42:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-14 15:42:47 -0500 |
commit | 3a77f0291965abde2fdb1a7ef7297e86a13e8629 (patch) | |
tree | e06c980cd8ed927146bbd4ea00bd37e04db5d145 /config.def.h | |
parent | d26ddfc7fd36d420990eee94d3c4badb90217bd1 (diff) | |
parent | 70da04a714914990556b8f123895301a57ee6d3f (diff) |
Merge pull request #247 from Humm42/xkboptions
initialize xkb_rules.options to a null pointer
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index a98ec36..43f35cd 100644 --- a/config.def.h +++ b/config.def.h @@ -41,7 +41,7 @@ static const struct xkb_rule_names xkb_rules = { /* example: .options = "ctrl:nocaps", */ - .options = "", + .options = NULL, }; static const int repeat_rate = 25; |