summaryrefslogtreecommitdiffstats
path: root/sys/ddb
diff options
context:
space:
mode:
authorjmg <jmg@FreeBSD.org>2014-06-02 23:50:19 +0000
committerjmg <jmg@FreeBSD.org>2014-06-02 23:50:19 +0000
commit117ebd90eb7a2bd7f23e5123662735690c13b1da (patch)
tree086bbfa2f9edf05c303e3aac6ac206b0676246e5 /sys/ddb
parentd13c0b6c1fbfb738c17b6fd4564e8031eafc4ac8 (diff)
downloadFreeBSD-src-117ebd90eb7a2bd7f23e5123662735690c13b1da.zip
FreeBSD-src-117ebd90eb7a2bd7f23e5123662735690c13b1da.tar.gz
handle longer commands so that lines don't overflow... people who added
commands forgot to check this...
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index cc4bde9..e890a17 100644
--- a/sys/ddb/db_command.c
+++ b/sys/ddb/db_command.c
@@ -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);
}
}
OpenPOWER on IntegriCloud