diff options
author | dt <dt@FreeBSD.org> | 1999-04-28 10:54:24 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1999-04-28 10:54:24 +0000 |
commit | ba8c622703d205067a8d74af1a1b2d95844349b2 (patch) | |
tree | 71852880cc0d9c678b247eb64d0e18a8b563840d /sys/i386/isa/loran.c | |
parent | a444f336d9c283cad668b319a9f82fedb66e7d51 (diff) | |
download | FreeBSD-src-ba8c622703d205067a8d74af1a1b2d95844349b2.zip FreeBSD-src-ba8c622703d205067a8d74af1a1b2d95844349b2.tar.gz |
s/static foo_devsw_installed = 0;/static int foo_devsw_installed;/.
(Edited automatically)
Diffstat (limited to 'sys/i386/isa/loran.c')
-rw-r--r-- | sys/i386/isa/loran.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/loran.c b/sys/i386/isa/loran.c index f542302..491675e 100644 --- a/sys/i386/isa/loran.c +++ b/sys/i386/isa/loran.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: loran.c,v 1.14 1998/12/16 11:46:41 phk Exp $ + * $Id: loran.c,v 1.15 1999/04/11 03:06:06 eivind Exp $ * * This device-driver helps the userland controlprogram for a LORAN-C * receiver avoid monopolizing the CPU. @@ -644,7 +644,7 @@ static struct cdevsw loran_cdevsw = NULL, -1 }; -static loran_devsw_installed = 0; +static int loran_devsw_installed; static void loran_drvinit(void *unused) { |