diff options
author | QMK Bot <hello@qmk.fm> | 2020-03-01 13:54:25 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-03-01 13:54:25 +0000 |
commit | 1ec8a7205f1719496e043776edcc972125fc57e3 (patch) | |
tree | 934c9df06c063fed8beaae71b9065505ea5973b7 | |
parent | ce604e1629cf9efd2d7751ff60e927ad0a09b35a (diff) |
format code according to conventions [skip ci]
-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 a8d3305a65..633492f905 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -643,7 +643,7 @@ void matrix_scan_quantum() { // void send_dword(uint32_t number) { // this might not actually work - uint16_t word = (number >> 16); + uint16_tword = (number >> 16); send_word(word); send_word(number & 0xFFFFUL); } |