diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-11-06 02:01:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-11-06 02:01:00 +0000 |
commit | c76942909d783de97f8cee390f02bd548b3292f3 (patch) | |
tree | 986da6efa5d1e3837b0984d56a9406044f1d5483 /sys | |
parent | 809277328b6029dd5cadc21af4dc1aefc948dbb9 (diff) |
fix mountroot type
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/alpha/swapgeneric.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/alpha/swapgeneric.c b/sys/arch/alpha/alpha/swapgeneric.c index 66648a92192..a3e20846ae6 100644 --- a/sys/arch/alpha/alpha/swapgeneric.c +++ b/sys/arch/alpha/alpha/swapgeneric.c @@ -1,4 +1,4 @@ -/* $OpenBSD: swapgeneric.c,v 1.4 1996/10/30 22:38:27 niklas Exp $ */ +/* $OpenBSD: swapgeneric.c,v 1.5 1996/11/06 02:00:59 deraadt Exp $ */ /* $NetBSD: swapgeneric.c,v 1.5 1996/06/12 01:26:37 cgd Exp $ */ /*- @@ -43,7 +43,7 @@ #include <sys/param.h> #include <sys/conf.h> -int (*mountroot) __P((void *)) = NULL; /* tells autoconf.c that we are "generic" */ +int (*mountroot) __P((void)) = NULL; /* tells autoconf.c that we are "generic" */ dev_t rootdev = NODEV; dev_t dumpdev = NODEV; |