diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2017-02-27 22:18:12 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-27 22:18:12 -0500 | 
| commit | 5bfeb229b885c6d5f207fed9bce4e4f75308fa70 (patch) | |
| tree | af928ca6c76cbfb577643273410805cb3c1cbeed /tmk_core | |
| parent | b851b0b2ae0a127dba6411a4c349fb67007ffd77 (diff) | |
| parent | d0b4dcc82ce1dd8549c2f7416bf79f4d0c0f23a7 (diff) | |
Merge pull request #1119 from phongnh/master
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;              }  | 
