summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-02-27 22:18:12 -0500
committerGitHub <noreply@github.com>2017-02-27 22:18:12 -0500
commit5bfeb229b885c6d5f207fed9bce4e4f75308fa70 (patch)
treeaf928ca6c76cbfb577643273410805cb3c1cbeed
parentb851b0b2ae0a127dba6411a4c349fb67007ffd77 (diff)
parentd0b4dcc82ce1dd8549c2f7416bf79f4d0c0f23a7 (diff)
Merge pull request #1119 from phongnh/master0.5.31
Removes redundant {} which cause build failure when DEBUG_ACTION is set
-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;
}