diff options
author | Christopher Browne <cbbrowne@ca.afilias.info> | 2016-07-28 12:42:21 -0400 |
---|---|---|
committer | Christopher Browne <cbbrowne@ca.afilias.info> | 2016-07-28 12:42:21 -0400 |
commit | 2d59c97ec16914835c55a409b460ecc79eba152d (patch) | |
tree | 14d5a07022da83a56c05738f2aa319ae84e41c2f /tmk_core/common | |
parent | 911d0a040e18ef10d4a683727845ba0314fe1226 (diff) | |
parent | 80667e898a17dfae86189d9f5f7dfcc9c7a08eea (diff) |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/action_layer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/action_layer.c b/tmk_core/common/action_layer.c index 63fa2b5ae4..a3c7579642 100644 --- a/tmk_core/common/action_layer.c +++ b/tmk_core/common/action_layer.c @@ -111,7 +111,7 @@ void layer_debug(void) #endif #if !defined(NO_ACTION_LAYER) && defined(PREVENT_STUCK_MODIFIERS) -uint8_t source_layers_cache[(MATRIX_ROWS * MATRIX_COLS + 7) / 8][MAX_LAYER_BITS] = {0}; +uint8_t source_layers_cache[(MATRIX_ROWS * MATRIX_COLS + 7) / 8][MAX_LAYER_BITS] = {{0}}; void update_source_layers_cache(keypos_t key, uint8_t layer) { |