diff options
author | tmk <nobody@nowhere> | 2013-02-20 15:52:32 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-02-20 15:52:32 +0900 |
commit | c3d57b69e02fce40455c96f4a9ac6b68b89ce027 (patch) | |
tree | cafa784fcc2c8ba91827d2417d57c740570b8ac4 /common/keymap.c | |
parent | e0f960a576e090808e5cc25c5368441c11f36ea6 (diff) |
Add keymap clear/reset action
Diffstat (limited to 'common/keymap.c')
-rw-r--r-- | common/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/keymap.c b/common/keymap.c index 3f13d4497a..ddc3210524 100644 --- a/common/keymap.c +++ b/common/keymap.c @@ -39,7 +39,7 @@ action_t action_for_key(uint8_t layer, key_t key) } __attribute__ ((weak)) -void action_function(keyrecord_t *event, uint8_t id, uint8_t opt) +void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) { } #else @@ -70,7 +70,7 @@ action_t action_for_key(uint8_t layer, key_t key) } } /* not used for legacy keymap */ -void action_function(keyrecord_t *event, uint8_t id, uint8_t opt) +void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) { } #endif |