From 1ec8a7205f1719496e043776edcc972125fc57e3 Mon Sep 17 00:00:00 2001 From: QMK Bot Date: Sun, 1 Mar 2020 13:54:25 +0000 Subject: [PATCH] format code according to conventions [skip ci] --- quantum/quantum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/quantum.c b/quantum/quantum.c index a8d3305a654da1e9d2eb1e9230d537a72c96d0a0..633492f905a1985f13670d43cd1a1e05655ea9bb 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); }