commit | e84ffddbced7620aa9fe4b9e8bfffb6a994c7b4e | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@gentoo.org> | Sat Apr 23 23:43:24 2011 +0000 |
committer | Wolfgang Denk <wd@denx.de> | Tue Jul 26 16:34:41 2011 +0200 |
tree | c7a7b6c602246736d27527779ac2179d9f7c81bf | |
parent | 147c7169e859128e86da96275c48d200ad720fd6 [diff] [blame] |
cmd_usage: constify The usage helper doesn't modify the command, so constify its input arg. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
diff --git a/common/command.c b/common/command.c index b3ec510..ddaed68 100644 --- a/common/command.c +++ b/common/command.c
@@ -140,7 +140,7 @@ return find_cmd_tbl(cmd, &__u_boot_cmd_start, len); } -int cmd_usage(cmd_tbl_t *cmdtp) +int cmd_usage(const cmd_tbl_t *cmdtp) { printf("%s - %s\n\n", cmdtp->name, cmdtp->usage);