Browse Source

Format code according to conventions (#12681)

Co-authored-by: QMK Bot <hello@qmk.fm>
pull/12752/head 0.12.40
github-actions[bot] 3 years ago
committed by GitHub
parent
commit
d3bf3d3b1c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tmk_core/protocol/chibios/usb_main.c

+ 2
- 2
tmk_core/protocol/chibios/usb_main.c View File

@ -953,8 +953,8 @@ int8_t sendchar(uint8_t c) {
*/
const sysinterval_t timeout = timed_out ? TIME_IMMEDIATE : TIME_MS2I(5);
const size_t result = chnWriteTimeout(&drivers.console_driver.driver, &c, 1, timeout);
timed_out = (result == 0);
const size_t result = chnWriteTimeout(&drivers.console_driver.driver, &c, 1, timeout);
timed_out = (result == 0);
return result;
}


Loading…
Cancel
Save