diff options
author | Dave Jones <dave@waveform.org.uk> | 2016-05-31 14:18:40 +0100 |
---|---|---|
committer | Dave Jones <dave@waveform.org.uk> | 2016-05-31 14:18:40 +0100 |
commit | 4ae86e6ff7d0b49032ab805eab73da7a35592788 (patch) | |
tree | 61455c37d6238b10854352ecb97ff10c6409e2c6 /keyboard/ergodox_ez | |
parent | 8ee9be11dee3db265cd8a0cc22a8fe40f6067820 (diff) | |
download | qmk_firmware-4ae86e6ff7d0b49032ab805eab73da7a35592788.tar.gz qmk_firmware-4ae86e6ff7d0b49032ab805eab73da7a35592788.zip |
Squash the prototype compiler warning
unselect_rows declared with no parameter list; requires (void) to
prevent compiler warning
Diffstat (limited to 'keyboard/ergodox_ez')
-rw-r--r-- | keyboard/ergodox_ez/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/ergodox_ez/matrix.c b/keyboard/ergodox_ez/matrix.c index c4f5b179f0..7266cca985 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; |