diff options
author | Joel Challis <git@zvecr.com> | 2020-03-01 17:55:43 +0000 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-06-12 17:00:27 +0900 |
commit | ae484e34a06c6aa50c64db10ee58420ff7676722 (patch) | |
tree | 475c4222b4d038123df5d27eb94980908a37a15f /quantum | |
parent | 6f63effe3d1f8ca3b71336bfbcbab12327faf098 (diff) |
Fix recent clang-format breaking quantum.c (#8282)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 846955ab00..52b700bb93 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -702,7 +702,7 @@ void matrix_scan_quantum() { // Functions for spitting out values // -void send_dword(uint32_t number) { // this might not actually work +void send_dword(uint32_t number) { uint16_t word = (number >> 16); send_word(word); send_word(number & 0xFFFFUL); |