]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Removes redundant {} which cause build failure when DEBUG_ACTION is set
authorPhong Nguyen <nhphong1406@gmail.com>
Sat, 25 Feb 2017 12:49:03 +0000 (19:49 +0700)
committerPhong Nguyen <nhphong1406@gmail.com>
Sat, 25 Feb 2017 12:50:46 +0000 (19:50 +0700)
tmk_core/common/action_tapping.c

index e16e11be7fc00518891279b2be0c2b919e6cd25c..ff78d7f2aba08efd7f60e9806390692fc901e049 100644 (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;
             }