summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-07-15 19:26:38 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-07-15 19:26:38 +0000
commitb0feb88c18468efc22e81eba6489ae2f5ef08601 (patch)
treef0474286784eb67c8f3bdb1dd1a8d50b5a5d34f6 /sys
parent2d7f7dd1aa6fa83d7b39e717d009d79a7a47ba40 (diff)
oops, wrong type for cpu_class
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/svr4/svr4_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/svr4/svr4_stat.c b/sys/compat/svr4/svr4_stat.c
index de785ab4520..a45c995db1b 100644
--- a/sys/compat/svr4/svr4_stat.c
+++ b/sys/compat/svr4/svr4_stat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: svr4_stat.c,v 1.15 1999/07/14 23:15:50 deraadt Exp $ */
+/* $OpenBSD: svr4_stat.c,v 1.16 1999/07/15 19:26:37 deraadt Exp $ */
/* $NetBSD: svr4_stat.c,v 1.21 1996/04/22 01:16:07 christos Exp $ */
/*
@@ -445,7 +445,7 @@ svr4_sys_systeminfo(p, v, retval)
extern char ostype[], hostname[], osrelease[],
version[], machine[], domainname[];
#ifdef __sparc__
- extern char cpu_class[];
+ extern char *cpu_class;
#endif
u_int rlen = SCARG(uap, len);