Skip to content

Commit

Permalink
Fix recent clang-format breaking quantum.c (#8282)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr authored Mar 1, 2020
1 parent 1ec8a72 commit 629950e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quantum/quantum.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 629950e

Please sign in to comment.