diff options
author | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2017-04-30 18:03:03 +0700 |
---|---|---|
committer | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2017-04-30 18:03:03 +0700 |
commit | 2f28652dcc22c74db4f3c60537fa07f6774451f9 (patch) | |
tree | c5249f5b68af2888aaf23477df017fe13341e7e6 /keyboards/handwired/promethium | |
parent | d8f1949029297b0bec395606bbaedf4f6d4c0760 (diff) |
Syntax fix
Diffstat (limited to 'keyboards/handwired/promethium')
-rw-r--r-- | keyboards/handwired/promethium/matrix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/handwired/promethium/matrix.c b/keyboards/handwired/promethium/matrix.c index 2b7ce2bf5e..72dbe8d4d0 100644 --- a/keyboards/handwired/promethium/matrix.c +++ b/keyboards/handwired/promethium/matrix.c @@ -133,8 +133,8 @@ void matrix_init(void) { matrix_init_quantum(); } -uint8_t matrix_scan(void -){ +uint8_t matrix_scan(void) +{ // Set row, read cols for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) { # if (DEBOUNCING_DELAY > 0) |