aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_command.c
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2015-05-23 14:59:27 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2015-05-23 14:59:27 +0000
commit0a95ab74dfd2843bd30daafcef6526d4bde9bd87 (patch)
tree4b9b29c94626a530bc9e4622f78f9458b56d1f7a /sys/ddb/db_command.c
parent66cbed6659aedf010cc9e0255e021532f510e456 (diff)
Notes
Diffstat (limited to 'sys/ddb/db_command.c')
-rw-r--r--sys/ddb/db_command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index e5bf27c6ad1d2..0d4f28f8b656c 100644
--- a/sys/ddb/db_command.c
+++ b/sys/ddb/db_command.c
@@ -311,7 +311,7 @@ db_cmd_search(char *name, struct command_table *table, struct command **cmdp)
static void
db_cmd_list(struct command_table *table)
{
- register struct command *cmd;
+ struct command *cmd;
LIST_FOREACH(cmd, table, next) {
db_printf("%-16s", cmd->name);