summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco S Hyman <marc@cvs.openbsd.org>1998-02-18 21:13:49 +0000
committerMarco S Hyman <marc@cvs.openbsd.org>1998-02-18 21:13:49 +0000
commit4dbfb304723145597200069ddfe6ce4466715319 (patch)
tree55b1b9f2fc64b1917bc9667e98f5b9f6ad123f5d
parentaf45581582ae5d4f0c58375b982509bd1c4b21f7 (diff)
fix typo; wouldn't compile unless APERTURE was defined
-rw-r--r--sys/arch/i386/i386/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c
index 02c07f6faf8..f7e20176394 100644
--- a/sys/arch/i386/i386/machdep.c
+++ b/sys/arch/i386/i386/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.79 1998/02/18 01:47:42 deraadt Exp $ */
+/* $OpenBSD: machdep.c,v 1.80 1998/02/18 21:13:48 marc Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -1888,7 +1888,7 @@ cpu_sysctl(name, namelen, oldp, oldlenp, newp, newlen, p)
return (sysctl_int(oldp, oldlenp, newp, newlen,
&allowaperture));
#else
- return (sysctl_rdint(oldp, oldlenp, newp, 0);
+ return (sysctl_rdint(oldp, oldlenp, newp, 0));
#endif
default:
return EOPNOTSUPP;