diff options
Diffstat (limited to 'sys/ddb/db_command.c')
-rw-r--r-- | sys/ddb/db_command.c | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 9d3be3b22b34..6771abe1c210 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -101,17 +101,14 @@ db_skip_to_eol() #define CMD_AMBIGUOUS 3 #define CMD_HELP 4 -static void db_cmd_list(struct command *table, - struct command **aux_tablep, - struct command **aux_tablep_end); +static void db_cmd_list(struct command *table, struct command **aux_tablep, + struct command **aux_tablep_end); static int db_cmd_search(char *name, struct command *table, - struct command **aux_tablep, - struct command **aux_tablep_end, - struct command **cmdp); + struct command **aux_tablep, + struct command **aux_tablep_end, struct command **cmdp); static void db_command(struct command **last_cmdp, - struct command *cmd_table, - struct command **aux_cmd_tablep, - struct command **aux_cmd_tablep_end); + struct command *cmd_table, struct command **aux_cmd_tablep, + struct command **aux_cmd_tablep_end); /* * Search for command prefix. @@ -504,9 +501,8 @@ db_fncall(dummy1, dummy2, dummy3, dummy4) int nargs = 0; db_expr_t retval; typedef db_expr_t fcn_10args_t(db_expr_t, db_expr_t, db_expr_t, - db_expr_t, db_expr_t, db_expr_t, - db_expr_t, db_expr_t, db_expr_t, - db_expr_t); + db_expr_t, db_expr_t, db_expr_t, db_expr_t, + db_expr_t, db_expr_t, db_expr_t); fcn_10args_t *func; int t; |