From: Phong Nguyen Date: Sat, 25 Feb 2017 12:49:03 +0000 (+0700) Subject: Removes redundant {} which cause build failure when DEBUG_ACTION is set X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d0b4dcc82ce1dd8549c2f7416bf79f4d0c0f23a7;p=qmk_firmware.git Removes redundant {} which cause build failure when DEBUG_ACTION is set --- 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; }