summaryrefslogtreecommitdiffstats
path: root/keyboard/ergodox_ez/keymaps/tm2030
diff options
context:
space:
mode:
authorDidier Loiseau <didierloiseau+git@gmail.com>2016-02-21 18:56:21 +0100
committerDidier Loiseau <didierloiseau+git@gmail.com>2016-02-21 18:56:21 +0100
commite336af79eb8178cfe1adf3d8213c36200a93c280 (patch)
tree629495dc75636912ba85c20303cd9cac1b17fd9f /keyboard/ergodox_ez/keymaps/tm2030
parenta2f6ab16c001c1cc456882457aec6c7d7999fd1c (diff)
downloadqmk_firmware-e336af79eb8178cfe1adf3d8213c36200a93c280.tar.gz
qmk_firmware-e336af79eb8178cfe1adf3d8213c36200a93c280.tar.xz
Fixed compilation warnings due to missing return statements
Diffstat (limited to 'keyboard/ergodox_ez/keymaps/tm2030')
-rw-r--r--keyboard/ergodox_ez/keymaps/tm2030/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboard/ergodox_ez/keymaps/tm2030/keymap.c b/keyboard/ergodox_ez/keymaps/tm2030/keymap.c
index 975460479..92efd9b5e 100644
--- a/keyboard/ergodox_ez/keymaps/tm2030/keymap.c
+++ b/keyboard/ergodox_ez/keymaps/tm2030/keymap.c
@@ -216,7 +216,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
// Runs just one time when the keyboard initializes.
void * matrix_init_user(void) {
-
+ return NULL;
};
// Runs constantly in the background, in a loop.
@@ -238,4 +238,5 @@ void * matrix_scan_user(void) {
if (host_keyboard_leds() & (1<<USB_LED_CAPS_LOCK)) {
ergodox_right_led_3_on();
}
+ return NULL;
};