Procházet zdrojové kódy

Removes redundant {} which cause build failure when DEBUG_ACTION is set

Phong Nguyen před 8 roky
rodič
revize
d0b4dcc82c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      tmk_core/common/action_tapping.c

+ 1 - 1
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;
             }