summaryrefslogtreecommitdiff
path: root/avr/cmd_help.c
diff options
context:
space:
mode:
authorLeo C2014-08-20 14:01:11 +0200
committerLeo C2014-08-20 14:01:11 +0200
commitd0581f881c4072ef0ac453167a98dc3bc0d87d86 (patch)
tree0aa6c87d8e0184e7a884171cb5b30275283156ad /avr/cmd_help.c
parent4bc81323e51ac138e733c14eeb6f283ae706e904 (diff)
downloadz180-stamp-d0581f881c4072ef0ac453167a98dc3bc0d87d86.zip
enum command_ret_t --> typedef
Diffstat (limited to 'avr/cmd_help.c')
-rw-r--r--avr/cmd_help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avr/cmd_help.c b/avr/cmd_help.c
index 317eb5d..b42fc87 100644
--- a/avr/cmd_help.c
+++ b/avr/cmd_help.c
@@ -2,7 +2,7 @@
#include "common.h"
#include "command.h"
-int do_help(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+command_ret_t do_help(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
const int len = cmd_tbl_item_count();
return _do_help(cmd_tbl, len, cmdtp, flag, argc, argv);