diff options
author | Joel Challis <git@zvecr.com> | 2020-03-01 17:55:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 17:55:43 +0000 |
commit | 629950e51bb0f3f12d84520426f93449e0e4e9b7 (patch) | |
tree | 44b38237b35028843d9ba0d5b07aafca2b05a1d2 | |
parent | 1ec8a7205f1719496e043776edcc972125fc57e3 (diff) | |
download | qmk_firmware-629950e51bb0f3f12d84520426f93449e0e4e9b7.tar.gz qmk_firmware-629950e51bb0f3f12d84520426f93449e0e4e9b7.zip |
Fix recent clang-format breaking quantum.c (#8282)
-rw-r--r-- | quantum/quantum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 633492f90..37c374ece 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
@@ -642,8 +642,8 @@ void matrix_scan_quantum() { | |||
642 | // Functions for spitting out values | 642 | // Functions for spitting out values |
643 | // | 643 | // |
644 | 644 | ||
645 | void send_dword(uint32_t number) { // this might not actually work | 645 | void send_dword(uint32_t number) { |
646 | uint16_tword = (number >> 16); | 646 | uint16_t word = (number >> 16); |
647 | send_word(word); | 647 | send_word(word); |
648 | send_word(number & 0xFFFFUL); | 648 | send_word(number & 0xFFFFUL); |
649 | } | 649 | } |