diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-03-12 22:17:52 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-03-12 22:17:52 +0000 |
commit | a44a962242f173c1861d9ffb788f21a3d0d848c7 (patch) | |
tree | a771ca2ec3113b350c587ce385efc09c43a40dec /sys/arch/sparc/include | |
parent | b977cde3b87ad6f425e63ead2e51347d0caa7fbd (diff) |
When attaching a wsdisplay, the wsscreen_list structure can not be on the
stack; found the hard way by Stefano <stefano@merlinobbs.net>.
Diffstat (limited to 'sys/arch/sparc/include')
-rw-r--r-- | sys/arch/sparc/include/fbvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/fbvar.h b/sys/arch/sparc/include/fbvar.h index ae15a42f13d..e6699e2a181 100644 --- a/sys/arch/sparc/include/fbvar.h +++ b/sys/arch/sparc/include/fbvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fbvar.h,v 1.14 2005/03/23 17:16:36 miod Exp $ */ +/* $OpenBSD: fbvar.h,v 1.15 2006/03/12 22:17:48 miod Exp $ */ /* $NetBSD: fbvar.h,v 1.9 1997/07/07 23:31:30 pk Exp $ */ /* @@ -70,6 +70,7 @@ struct sunfb { struct rasops_info sf_ro; struct wsscreen_descr sf_wsd; + struct wsscreen_list sf_wsl; int sf_nscreens; }; |