diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2017-07-11 19:41:04 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2017-07-11 19:41:04 +0300 |
commit | 78545b95090816767bf3e17c4745bb0c3db01a5f (patch) | |
tree | 660340e5a6d4dfbe875f0c83b556a6624f9465ad /tests/basic | |
parent | 5a25d5016892790acb08883a33ec21b1724a96c8 (diff) |
Fix unreferenced errors with mingw compiler and unit tests
Diffstat (limited to 'tests/basic')
-rw-r--r-- | tests/basic/keymap.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/basic/keymap.c b/tests/basic/keymap.c index 3274f213f7..3f97c0a0ee 100644 --- a/tests/basic/keymap.c +++ b/tests/basic/keymap.c @@ -40,4 +40,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { } } return MACRO_NONE; -};
\ No newline at end of file +}; + +void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) { +}
\ No newline at end of file |