소스 검색

format code according to conventions [skip ci]

QMK Bot 5 년 전
부모
커밋
1ec8a7205f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      quantum/quantum.c

+ 1 - 1
quantum/quantum.c

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