From 4ae86e6ff7d0b49032ab805eab73da7a35592788 Mon Sep 17 00:00:00 2001 From: Dave Jones Date: Tue, 31 May 2016 14:18:40 +0100 Subject: [PATCH] Squash the prototype compiler warning unselect_rows declared with no parameter list; requires (void) to prevent compiler warning --- keyboard/ergodox_ez/matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboard/ergodox_ez/matrix.c b/keyboard/ergodox_ez/matrix.c index c4f5b179f..7266cca98 100644 --- a/keyboard/ergodox_ez/matrix.c +++ b/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;