diff options
author | QMK Bot <hello@qmk.fm> | 2020-07-07 21:43:51 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-07-07 21:43:51 +0000 |
commit | 9ae15e8c79375f2ca2f315d8b24e8c51a6855039 (patch) | |
tree | a302e539135f859fbaaef86e37c3f7baf9dfe877 /quantum | |
parent | 666cb44673c3db85e0141189319fc9aed394c56d (diff) | |
download | qmk_firmware-9ae15e8c79375f2ca2f315d8b24e8c51a6855039.tar.gz qmk_firmware-9ae15e8c79375f2ca2f315d8b24e8c51a6855039.zip |
format code according to conventions [skip ci]
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/process_keycode/process_dynamic_macro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/process_keycode/process_dynamic_macro.c b/quantum/process_keycode/process_dynamic_macro.c index df3a8a8120..18c8d7ca2e 100644 --- a/quantum/process_keycode/process_dynamic_macro.c +++ b/quantum/process_keycode/process_dynamic_macro.c @@ -221,8 +221,8 @@ bool process_dynamic_macro(uint16_t keycode, keyrecord_t *record) { case DYN_REC_STOP: /* Stop the macro recording. */ if (record->event.pressed ^ (keycode != DYN_REC_STOP)) { /* Ignore the initial release - * just after the recording - * starts for DYN_REC_STOP. */ + * just after the recording + * starts for DYN_REC_STOP. */ switch (macro_id) { case 1: dynamic_macro_record_end(macro_buffer, macro_pointer, +1, ¯o_end); |