From 5eba824ffe74988e7e86d47883b37b7719908e4f Mon Sep 17 00:00:00 2001 From: QMK Bot Date: Tue, 16 Feb 2021 20:28:05 +0000 Subject: [PATCH] Format code according to conventions --- tmk_core/common/action.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c index 74bfc06264a5..0903543065d5 100644 --- a/tmk_core/common/action.c +++ b/tmk_core/common/action.c @@ -955,9 +955,7 @@ void tap_code_delay(uint8_t code, uint16_t delay) { * * \param code The basic keycode to tap. If `code` is `KC_CAPS`, the delay will be `TAP_HOLD_CAPS_DELAY`, otherwise `TAP_CODE_DELAY`, if defined. */ -void tap_code(uint8_t code) { - tap_code_delay(code, code == KC_CAPS ? TAP_HOLD_CAPS_DELAY : TAP_CODE_DELAY); -} +void tap_code(uint8_t code) { tap_code_delay(code, code == KC_CAPS ? TAP_HOLD_CAPS_DELAY : TAP_CODE_DELAY); } /** \brief Adds the given physically pressed modifiers and sends a keyboard report immediately. *