diff options
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 1d18a86..66e6d8e 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 11e6216..9540125 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) |