mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-14 04:24:41 +00:00
core: Fix variable init and header include (#7626)
tmk backport from tmk/tmk_keyboard@325a99acd9
This commit is contained in:
parent
1f26101f0e
commit
0374677814
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ action_t action_for_key(uint8_t layer, keypos_t key) {
|
||||||
// keycode remapping
|
// keycode remapping
|
||||||
keycode = keycode_config(keycode);
|
keycode = keycode_config(keycode);
|
||||||
|
|
||||||
action_t action;
|
action_t action = {};
|
||||||
uint8_t action_layer, when, mod;
|
uint8_t action_layer, when, mod;
|
||||||
|
|
||||||
switch (keycode) {
|
switch (keycode) {
|
||||||
|
|
Loading…
Reference in a new issue