summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-05-04 06:59:44 +0000
committerQMK Bot <hello@qmk.fm>2020-05-04 06:59:44 +0000
commit1ff526dac0e73ea8cce522d0106631e3a748802c (patch)
tree52749e19d9a4e10b14b88b661be206a4007c42df
parente17b55e33ad5b3dcefcf7b828ac99aeb2daeeae2 (diff)
format code according to conventions [skip ci]0.8.145
-rw-r--r--tmk_core/protocol/chibios/usb_main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tmk_core/protocol/chibios/usb_main.c b/tmk_core/protocol/chibios/usb_main.c
index 65bd291bec..66985b9de8 100644
--- a/tmk_core/protocol/chibios/usb_main.c
+++ b/tmk_core/protocol/chibios/usb_main.c
@@ -796,9 +796,7 @@ int8_t sendchar(uint8_t c) {
}
#endif /* CONSOLE_ENABLE */
-void _putchar(char character) {
- sendchar(character);
-}
+void _putchar(char character) { sendchar(character); }
#ifdef RAW_ENABLE
void raw_hid_send(uint8_t *data, uint8_t length) {