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/ctx.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/ctx.c')
-rw-r--r-- | sys/i386/isa/ctx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/ctx.c b/sys/i386/isa/ctx.c index 413302d..28d61a1 100644 --- a/sys/i386/isa/ctx.c +++ b/sys/i386/isa/ctx.c @@ -8,7 +8,7 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * - * $Id: ctx.c,v 1.28 1998/06/14 10:52:52 bde Exp $ + * $Id: ctx.c,v 1.29 1998/12/09 02:56:48 eivind Exp $ */ /* @@ -448,7 +448,7 @@ waitvb(int port) -static ctx_devsw_installed = 0; +static int ctx_devsw_installed; static void ctx_drvinit(void *unused) |