diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-06-21 17:42:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-21 17:42:29 -0400 |
commit | 1a0bac8bccf0e156d2f3c5f14a7214f9677b6370 (patch) | |
tree | ca8a2a62e744a3448cfc247caab029152e2ebefb /tmk_core/common/command.c | |
parent | 758a8c64e9ffb12cda4c78d8d1ee6a3f448901fc (diff) | |
download | qmk_firmware-1a0bac8bccf0e156d2f3c5f14a7214f9677b6370.tar.gz qmk_firmware-1a0bac8bccf0e156d2f3c5f14a7214f9677b6370.zip |
Warning reductions (#430)
Warning reductions
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r-- | tmk_core/common/command.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index 024d7c67a..187a2b949 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c | |||
@@ -66,7 +66,6 @@ static bool mousekey_console(uint8_t code); | |||
66 | static void mousekey_console_help(void); | 66 | static void mousekey_console_help(void); |
67 | #endif | 67 | #endif |
68 | 68 | ||
69 | static uint8_t numkey2num(uint8_t code); | ||
70 | static void switch_default_layer(uint8_t layer); | 69 | static void switch_default_layer(uint8_t layer); |
71 | 70 | ||
72 | 71 | ||
@@ -763,7 +762,7 @@ static bool mousekey_console(uint8_t code) | |||
763 | /*********************************************************** | 762 | /*********************************************************** |
764 | * Utilities | 763 | * Utilities |
765 | ***********************************************************/ | 764 | ***********************************************************/ |
766 | static uint8_t numkey2num(uint8_t code) | 765 | uint8_t numkey2num(uint8_t code) |
767 | { | 766 | { |
768 | switch (code) { | 767 | switch (code) { |
769 | case KC_1: return 1; | 768 | case KC_1: return 1; |