1
0
Fork 0

Fix recent clang-format breaking quantum.c (#8282)

This commit is contained in:
Joel Challis 2020-03-01 17:55:43 +00:00 committed by GitHub
parent 1ec8a7205f
commit 629950e51b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}