From d14f72e2f73309ab61fee8945a95bb3266cdffe7 Mon Sep 17 00:00:00 2001 From: Erik Pettersson Date: Sat, 26 Nov 2016 09:58:21 +0100 Subject: [PATCH 1/1] Fix to make phantom board compile --- orphan/phantom/keymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orphan/phantom/keymap.c b/orphan/phantom/keymap.c index a040434f..81180aa5 100644 --- a/orphan/phantom/keymap.c +++ b/orphan/phantom/keymap.c @@ -145,7 +145,7 @@ action_t keymap_fn_to_action(uint8_t keycode) if (FN_INDEX(keycode) < FN_ACTIONS_SIZE) { action.code = pgm_read_word(&fn_actions[FN_INDEX(keycode)]); } else { - action.code = ACTION_NO; + return (action_t)ACTION_NO; } return action; } -- 2.39.3