Skip to content

Commit

Permalink
Fix recent clang-format breaking quantum.c (qmk#8282)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr authored and jakeisnt committed Aug 20, 2020
1 parent e983ab0 commit 03a90bf
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 03a90bf

Please sign in to comment.