handle longer commands so that lines don't overflow... people who added

commands forgot to check this...
This commit is contained in:
John-Mark Gurney 2014-06-02 23:50:19 +00:00
parent b2c696468c
commit 527be4f229

View File

@ -321,8 +321,8 @@ db_cmd_list(table)
register struct command *cmd;
LIST_FOREACH(cmd, table, next) {
db_printf("%-12s", cmd->name);
db_end_line(12);
db_printf("%-16s", cmd->name);
db_end_line(16);
}
}