Преглед изворни кода

Squash the prototype compiler warning

unselect_rows declared with no parameter list; requires (void) to
prevent compiler warning
Dave Jones пре 9 година
родитељ
комит
4ae86e6ff7
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      keyboard/ergodox_ez/matrix.c

+ 1 - 1
keyboard/ergodox_ez/matrix.c

@@ -50,7 +50,7 @@ static matrix_row_t matrix_debouncing[MATRIX_ROWS];
 
 static matrix_row_t read_cols(uint8_t row);
 static void init_cols(void);
-static void unselect_rows();
+static void unselect_rows(void);
 static void select_row(uint8_t row);
 
 static uint8_t mcp23018_reset_loop;