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 fdidron committed Jun 12, 2020
1 parent 6f63eff commit ae484e3
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 @@ -702,7 +702,7 @@ void matrix_scan_quantum() {
// Functions for spitting out values
//

void send_dword(uint32_t number) { // this might not actually work
void send_dword(uint32_t number) {
uint16_t word = (number >> 16);
send_word(word);
send_word(number & 0xFFFFUL);
Expand Down

0 comments on commit ae484e3

Please sign in to comment.