hdt: Fixing print_history() prototype
authorErwan Velu <erwanaliasr1@gmail.com>
Wed, 12 May 2010 19:46:59 +0000 (21:46 +0200)
committerH. Peter Anvin <hpa@linux.intel.com>
Wed, 12 May 2010 21:57:03 +0000 (14:57 -0700)
print_history have to follow the exec prototype

com32/hdt/hdt-cli.c
com32/hdt/hdt-cli.h

index 76aed78..29cc25b 100644 (file)
@@ -779,7 +779,7 @@ void start_auto_mode(struct s_hardware *hardware)
     more_printf("\n");
 }
 
-void print_history(void)
+void print_history(int argc, char **argv, struct s_hardware * hardware)
 {
     reset_more_printf();
     for (int i = 1; i <= MAX_HISTORY_SIZE; i++) {
index b55d108..d9632b2 100644 (file)
@@ -160,7 +160,7 @@ void start_auto_mode(struct s_hardware *hardware);
 void main_show(char *item, struct s_hardware *hardware);
 
 #define CLI_HISTORY "history"
-void print_history(void);
+void print_history(int argc, char **argv, struct s_hardware * hardware);
 
 // DMI STUFF
 #define CLI_DMI_BASE_BOARD "base_board"