diff options
author | Erez Zukerman <bulk@ezuk.org> | 2016-05-31 23:42:54 -0400 |
---|---|---|
committer | Erez Zukerman <bulk@ezuk.org> | 2016-05-31 23:42:54 -0400 |
commit | 56939b1518ec65f57aba7f59515be4d5c783eedc (patch) | |
tree | cda157667874baf559d165fe9cc8338ad0a54512 /keyboard/ergodox_ez/matrix.c | |
parent | 0c4085dd53d4b5f26fc0fc6d5ec590f1148f188f (diff) | |
parent | 4ae86e6ff7d0b49032ab805eab73da7a35592788 (diff) | |
download | firmware-56939b1518ec65f57aba7f59515be4d5c783eedc.tar.gz firmware-56939b1518ec65f57aba7f59515be4d5c783eedc.tar.bz2 firmware-56939b1518ec65f57aba7f59515be4d5c783eedc.zip |
Merge pull request #367 from waveform80/fix-unselect-rows-prototype
Squash the prototype compiler warning
Diffstat (limited to 'keyboard/ergodox_ez/matrix.c')
-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 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; |