Clear up return-type warnings

feature/alt_lookup_engine
nirenjan 2016-10-06 10:39:16 -07:00
parent b39c13fe1b
commit bbe86d554f
2 changed files with 3 additions and 1 deletions

View File

@ -313,7 +313,7 @@ const struct command_handler handlers[X52_CTL_CMD_MAX] = {
} }
}; };
static int do_help(const struct command_handler *cmd) static void do_help(const struct command_handler *cmd)
{ {
int i; int i;
if (cmd) { if (cmd) {

View File

@ -75,4 +75,6 @@ int test_blink_n_shift(void)
TEST_BLINK_OR_SHIFT(blink); TEST_BLINK_OR_SHIFT(blink);
TEST_BLINK_OR_SHIFT(shift); TEST_BLINK_OR_SHIFT(shift);
return 0;
} }