diff options
author | Joel Challis <git@zvecr.com> | 2021-02-05 13:27:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 13:27:24 +0000 |
commit | b2d0e8a491f347d43b482808a744642fc975afab (patch) | |
tree | 177e05eab66844bb029829df75611106cccb37cb /quantum/quantum.c | |
parent | 18babeae49dc933f7a07e123241ae2a78a75f168 (diff) |
Manually run formatting job (#11797)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 71a05d3873..cf16e953a2 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -697,9 +697,7 @@ void send_byte(uint8_t number) { send_nibble(number & 0xF); } -void send_nibble(uint8_t number) { - tap_code16(hex_to_keycode(number)); -} +void send_nibble(uint8_t number) { tap_code16(hex_to_keycode(number)); } __attribute__((weak)) uint16_t hex_to_keycode(uint8_t hex) { hex = hex & 0xF; |