From a1a0f8a3fae49be6bce42d9321a9035e73f4fc5f Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Tue, 14 Jun 2005 13:25:40 +0000 Subject: [PATCH] static != extern --- sys/ddb/db_command.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index fb26fad1d8..e347134b6f 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -24,7 +24,7 @@ * rights to redistribute these changes. * * $FreeBSD: src/sys/ddb/db_command.c,v 1.34.2.2 2001/07/29 22:48:36 kris Exp $ - * $DragonFly: src/sys/ddb/db_command.c,v 1.7 2005/02/12 21:04:41 eirikn Exp $ + * $DragonFly: src/sys/ddb/db_command.c,v 1.8 2005/06/14 13:25:40 joerg Exp $ */ /* @@ -67,8 +67,7 @@ static db_cmdfcn_t db_fncall; static db_cmdfcn_t db_gdb; static db_cmdfcn_t db_reset; -/* XXX this is actually forward-static. */ -extern struct command db_show_cmds[]; +static struct command db_show_cmds[]; /* * if 'ed' style: 'dot' is set at start of last item printed, -- 2.41.0