]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Squash the prototype compiler warning
authorDave Jones <dave@waveform.org.uk>
Tue, 31 May 2016 13:18:40 +0000 (14:18 +0100)
committerDave Jones <dave@waveform.org.uk>
Tue, 31 May 2016 13:18:40 +0000 (14:18 +0100)
unselect_rows declared with no parameter list; requires (void) to
prevent compiler warning

keyboard/ergodox_ez/matrix.c

index c4f5b179f0dcdb4706fa05d8e22ebb129a3b3941..7266cca9855bdbe84fa1b30d4aab2dcd3e35cd24 100644 (file)
@@ -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;