diff options
author | Dmitrij Tejblum <dt@FreeBSD.org> | 1999-04-28 10:54:24 +0000 |
---|---|---|
committer | Dmitrij Tejblum <dt@FreeBSD.org> | 1999-04-28 10:54:24 +0000 |
commit | 604359cf9b9199b99d370d1e374e286c20406bfc (patch) | |
tree | e5288f14008fd205055d3cd2af3e04d6242ae260 /sys/kern | |
parent | 78e2e8ea352da2ef808bd8af1f04fb1c7f7e1225 (diff) |
Notes
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_descrip.c | 4 | ||||
-rw-r--r-- | sys/kern/tty_cons.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c index 1d18a86d98a2..66e6d8ed3e1d 100644 --- a/sys/kern/kern_descrip.c +++ b/sys/kern/kern_descrip.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_descrip.c 8.6 (Berkeley) 4/19/94 - * $Id: kern_descrip.c,v 1.57 1998/11/11 10:55:56 truckman Exp $ + * $Id: kern_descrip.c,v 1.58 1999/01/08 17:31:08 eivind Exp $ */ #include "opt_compat.h" @@ -1266,7 +1266,7 @@ SYSCTL_INT(_kern, KERN_MAXFILESPERPROC, maxfilesperproc, SYSCTL_INT(_kern, KERN_MAXFILES, maxfiles, CTLFLAG_RW, &maxfiles, 0, ""); -static fildesc_devsw_installed = 0; +static int fildesc_devsw_installed; #ifdef DEVFS static void *devfs_token_stdin; static void *devfs_token_stdout; diff --git a/sys/kern/tty_cons.c b/sys/kern/tty_cons.c index 11e6216d8d25..954012518cf3 100644 --- a/sys/kern/tty_cons.c +++ b/sys/kern/tty_cons.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)cons.c 7.2 (Berkeley) 5/9/91 - * $Id: cons.c,v 1.62 1999/04/27 11:14:29 phk Exp $ + * $Id: cons.c,v 1.63 1999/04/27 12:21:03 phk Exp $ */ #include "opt_devfs.h" @@ -414,7 +414,7 @@ cnputc(c) } } -static cn_devsw_installed = 0; +static int cn_devsw_installed; static void cn_drvinit(void *unused) |