summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2010-09-27 11:02:09 +0800
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2010-11-17 12:14:55 +0800
commitfa1fdeb35097d78d42ed0444eee69b6fa818ff83 (patch)
tree508e13cf6db33e46b804d09aca063b2be3a6e04e
parent6d2fd508d1a2f1479202a8eb80ffc71143f29874 (diff)
downloadbarebox-fa1fdeb35097d78d42ed0444eee69b6fa818ff83.tar.gz
barebox-fa1fdeb35097d78d42ed0444eee69b6fa818ff83.tar.xz
linux16: fix cmd_tbl_t as struct command
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r--commands/linux16.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/linux16.c b/commands/linux16.c
index ec859a73ab..5f412e29d3 100644
--- a/commands/linux16.c
+++ b/commands/linux16.c
@@ -150,7 +150,7 @@ struct linux_kernel_header {
* (setup = 'real mode code' and kernel = 'protected mode code') to their
* default locations, switches back to real mode and runs the setup code.
*/
-static int do_linux16(cmd_tbl_t *cmdtp, int argc, char *argv[])
+static int do_linux16(struct command *cmdtp, int argc, char *argv[])
{
struct linux_kernel_header *lh = NULL;
int rc;