summaryrefslogtreecommitdiff
path: root/tmk_core/common/action_tapping.c
diff options
context:
space:
mode:
authorPhong Nguyen <nhphong1406@gmail.com>2017-02-25 19:49:03 +0700
committerPhong Nguyen <nhphong1406@gmail.com>2017-02-25 19:50:46 +0700
commitd0b4dcc82ce1dd8549c2f7416bf79f4d0c0f23a7 (patch)
treecd4d40c4d3dc156b50b0ec2a706fc5bf0fca1173 /tmk_core/common/action_tapping.c
parentc62f3bd74d4d9719f9d26e0b4ab43d64d56c9715 (diff)
Removes redundant {} which cause build failure when DEBUG_ACTION is set
Diffstat (limited to 'tmk_core/common/action_tapping.c')
-rw-r--r--tmk_core/common/action_tapping.c2
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;
}