Skip to content

Commit

Permalink
format code according to conventions [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot authored and jakeisnt committed Aug 20, 2020
1 parent 6c84faa commit e983ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/quantum.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit e983ab0

Please sign in to comment.