Skip to content

Commit 970ad01

Browse files
tzarcnoroadsleft
authored andcommitted
qmk cformat on develop (#9501)
1 parent ccb1faf commit 970ad01

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

tmk_core/protocol/chibios/usb_main.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -796,9 +796,7 @@ int8_t sendchar(uint8_t c) {
796796
}
797797
#endif /* CONSOLE_ENABLE */
798798

799-
void _putchar(char character) {
800-
sendchar(character);
801-
}
799+
void _putchar(char character) { sendchar(character); }
802800

803801
#ifdef RAW_ENABLE
804802
void raw_hid_send(uint8_t *data, uint8_t length) {

tmk_core/protocol/lufa/lufa.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ static void send_keyboard(report_keyboard_t *report) {
556556
uint8_t timeout = 255;
557557

558558
#ifdef BLUETOOTH_ENABLE
559-
uint8_t where = where_to_send();
559+
uint8_t where = where_to_send();
560560

561561
if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) {
562562
# ifdef MODULE_ADAFRUIT_BLE
@@ -621,7 +621,7 @@ static void send_mouse(report_mouse_t *report) {
621621
uint8_t timeout = 255;
622622

623623
# ifdef BLUETOOTH_ENABLE
624-
uint8_t where = where_to_send();
624+
uint8_t where = where_to_send();
625625

626626
if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) {
627627
# ifdef MODULE_ADAFRUIT_BLE

0 commit comments

Comments
 (0)