1
0
Fork 0

Merge pull request #1119 from phongnh/master

Removes redundant {} which cause build failure when DEBUG_ACTION is set
This commit is contained in:
Jack Humbert 2017-02-27 22:18:12 -05:00 committed by GitHub
commit 5bfeb229b8

View file

@ -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;
}