summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-09-08 21:49:13 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-09-08 21:49:13 +0000
commit1afdf6ba43449ff8bbe667524e4e95c1b9541c61 (patch)
tree8c3c985a565fbee4f9842c99e02eb17df33214b1 /sys/arch/i386
parent47a4d493b251b688295fe52dff5964f472ea4215 (diff)
match size of fpreg w/ the save87 structs as figured in discussion w/ jason two months ago and the rediscovered by grange@ and then probably by some more other people in mongolia who had no inet to report it unfortunately; this also fixes problem w/ catching sigsegv after recent bcopy(,,sizeof) fixes; deraadt@ ok
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/include/reg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/reg.h b/sys/arch/i386/include/reg.h
index 98ccb89f509..fd1f7e73432 100644
--- a/sys/arch/i386/include/reg.h
+++ b/sys/arch/i386/include/reg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: reg.h,v 1.3 2003/06/02 23:27:47 millert Exp $ */
+/* $OpenBSD: reg.h,v 1.4 2003/09/08 21:49:12 mickey Exp $ */
/* $NetBSD: reg.h,v 1.14 1995/10/11 04:20:24 mycroft Exp $ */
/*-
@@ -93,7 +93,7 @@ struct fpreg {
* XXX
* Fill this in with real info.
*/
- char __data[108];
+ char __data[116];
};
#endif /* !_I386_REG_H_ */