diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/snp/snp.c | 2 | ||||
-rw-r--r-- | sys/dev/speaker/spkr.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/snp/snp.c b/sys/dev/snp/snp.c index 7bfb635..4679f01 100644 --- a/sys/dev/snp/snp.c +++ b/sys/dev/snp/snp.c @@ -513,7 +513,7 @@ snppoll(dev, events, p) #ifdef DEVFS static void *snp_devfs_token[NSNP]; #endif -static snp_devsw_installed = 0; +static int snp_devsw_installed; static void snp_drvinit __P((void *unused)); static void diff --git a/sys/dev/speaker/spkr.c b/sys/dev/speaker/spkr.c index ca53452..952d822 100644 --- a/sys/dev/speaker/spkr.c +++ b/sys/dev/speaker/spkr.c @@ -4,7 +4,7 @@ * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 * modified for FreeBSD by Andrew A. Chernov <ache@astral.msk.su> * - * $Id: spkr.c,v 1.31 1998/01/24 02:54:25 eivind Exp $ + * $Id: spkr.c,v 1.32 1998/02/09 06:08:41 eivind Exp $ */ #include "speaker.h" @@ -584,7 +584,7 @@ spkrioctl(dev, cmd, cmdarg, flags, p) } -static spkr_devsw_installed = 0; +static int spkr_devsw_installed; static void spkr_drvinit(void *unused) |