From 629950e51bb0f3f12d84520426f93449e0e4e9b7 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Sun, 1 Mar 2020 17:55:43 +0000 Subject: [PATCH] Fix recent clang-format breaking quantum.c (#8282) --- quantum/quantum.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quantum/quantum.c b/quantum/quantum.c index 633492f905..37c374ece9 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -642,8 +642,8 @@ void matrix_scan_quantum() { // Functions for spitting out values // -void send_dword(uint32_t number) { // this might not actually work - uint16_tword = (number >> 16); +void send_dword(uint32_t number) { + uint16_t word = (number >> 16); send_word(word); send_word(number & 0xFFFFUL); }