Skip to content

Commit

Permalink
Fix compile error in debounce_eager_pk
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-ong committed Jan 26, 2019
1 parent 503e02d commit 562c0d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quantum/debounce/debounce_eager_pk.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ After pressing a key, it immediately changes state, and sets a counter.
No further inputs are accepted until DEBOUNCE milliseconds have occurred.
*/

#include "debounce.h"
#include "matrix.h"
#include "timer.h"
#include "quantum.h"
#include <stdlib.h>

#ifndef DEBOUNCE
Expand Down Expand Up @@ -114,7 +114,7 @@ void transfer_matrix_values(matrix_row_t raw[], matrix_row_t cooked[], uint8_t n
}
}

bool debounce_active()
bool debounce_active(void)
{
return true;
}
Expand Down

0 comments on commit 562c0d7

Please sign in to comment.