summaryrefslogtreecommitdiffstats
path: root/tmk_core/common
diff options
context:
space:
mode:
authorPhong Nguyen <nhphong1406@gmail.com>2017-02-25 13:49:03 +0100
committerPhong Nguyen <nhphong1406@gmail.com>2017-02-25 13:50:46 +0100
commitd0b4dcc82ce1dd8549c2f7416bf79f4d0c0f23a7 (patch)
treecd4d40c4d3dc156b50b0ec2a706fc5bf0fca1173 /tmk_core/common
parentc62f3bd74d4d9719f9d26e0b4ab43d64d56c9715 (diff)
downloadqmk_firmware-d0b4dcc82ce1dd8549c2f7416bf79f4d0c0f23a7.tar.gz
qmk_firmware-d0b4dcc82ce1dd8549c2f7416bf79f4d0c0f23a7.tar.xz
Removes redundant {} which cause build failure when DEBUG_ACTION is set
Diffstat (limited to 'tmk_core/common')
-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 e16e11be7..ff78d7f2a 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;
}