소스 검색

Fix recent clang-format breaking quantum.c (#8282)

Joel Challis 5 년 전
부모
커밋
629950e51b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      quantum/quantum.c

+ 2 - 2
quantum/quantum.c

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