diff options
author | Phong Nguyen <nhphong1406@gmail.com> | 2017-02-25 19:49:03 +0700 |
---|---|---|
committer | Phong Nguyen <nhphong1406@gmail.com> | 2017-02-25 19:50:46 +0700 |
commit | d0b4dcc82ce1dd8549c2f7416bf79f4d0c0f23a7 (patch) | |
tree | cd4d40c4d3dc156b50b0ec2a706fc5bf0fca1173 /tmk_core | |
parent | c62f3bd74d4d9719f9d26e0b4ab43d64d56c9715 (diff) |
Removes redundant {} which cause build failure when DEBUG_ACTION is set
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/action_tapping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/action_tapping.c b/tmk_core/common/action_tapping.c index e16e11be7f..ff78d7f2ab 100644 --- a/tmk_core/common/action_tapping.c +++ b/tmk_core/common/action_tapping.c @@ -257,7 +257,7 @@ bool process_tapping(keyrecord_t *keyp) return true; } } else { - if (!IS_NOEVENT(event)) debug("Tapping: other key just after tap.\n") {}; + if (!IS_NOEVENT(event)) debug("Tapping: other key just after tap.\n"); process_record(keyp); return true; } |