From 6cc289554b8533c3a4ccee449df82dd25964011a Mon Sep 17 00:00:00 2001 From: markm Date: Wed, 30 Apr 2003 12:57:40 +0000 Subject: Fix some easy, global, lint warnings. In most cases, this means making some local variables static. In a couple of cases, this means removing an unused variable. --- sys/dev/sio/sio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/sio/sio.c') diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index c448716..4d294df 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -327,7 +327,7 @@ static struct cdevsw sio_cdevsw = { .d_kqfilter = ttykqfilter, }; -int comconsole = -1; +static int comconsole = -1; static volatile speed_t comdefaultrate = CONSPEED; static u_long comdefaultrclk = DEFAULT_RCLK; SYSCTL_ULONG(_machdep, OID_AUTO, conrclk, CTLFLAG_RW, &comdefaultrclk, 0, ""); -- cgit v1.1