summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2011-11-15 17:12:15 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2011-11-15 17:12:15 +0000
commit87196db39b97f49b5477e857588f7cf8c608772d (patch)
treed1e7657e5937065a51cb8345fe2c07e41c6095af /sys/arch/mips64/include
parent2798b96c8fa1fb0d3d30888b6cf0059883e1eff2 (diff)
label_t is the kernel setjmp buffer. It should simply be an array of
the right type, noone will ever fiddle with the internals. discussed with jsing
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r--sys/arch/mips64/include/_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/_types.h b/sys/arch/mips64/include/_types.h
index 0d61a79b77b..42107996609 100644
--- a/sys/arch/mips64/include/_types.h
+++ b/sys/arch/mips64/include/_types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: _types.h,v 1.10 2011/09/08 03:40:32 guenther Exp $ */
+/* $OpenBSD: _types.h,v 1.11 2011/11/15 17:12:14 deraadt Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -152,7 +152,7 @@ typedef void * __wctype_t;
#if defined(_KERNEL)
typedef struct label_t {
- __register_t val[14];
+ long val[14];
} label_t;
#endif