From 922bb41a47e390ee3367fc41081d4470cac1202d Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 4 Jan 2010 10:21:11 +0100 Subject: remove typedef cmd_tbl_t and replace it with struct command Signed-off-by: Sascha Hauer --- commands/help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands/help.c') diff --git a/commands/help.c b/commands/help.c index d8c67cddbe..f8387bd614 100644 --- a/commands/help.c +++ b/commands/help.c @@ -28,7 +28,7 @@ * Use puts() instead of printf() to avoid printf buffer overflow * for long help messages */ -static int do_help (cmd_tbl_t * cmdtp, int argc, char *argv[]) +static int do_help(struct command * cmdtp, int argc, char *argv[]) { if (argc == 1) { /* show list of commands */ for_each_command(cmdtp) { -- cgit v1.2.3