diff options
author | 2006-02-20 21:39:06 +0000 | |
---|---|---|
committer | 2006-02-20 21:39:06 +0000 | |
commit | 09c4959ccf5a2cb0df80ac98a60e00c3c2418f9f (patch) | |
tree | f25bfde2b996b30569f4ae671cfdca1167316e78 | |
parent | - remove mbuf linearization code. it is broken in this context and it is very (diff) | |
download | wireguard-openbsd-09c4959ccf5a2cb0df80ac98a60e00c3c2418f9f.tar.xz wireguard-openbsd-09c4959ccf5a2cb0df80ac98a60e00c3c2418f9f.zip |
Fixed structure size for sleep states (bad grange!)
ok marco@
-rw-r--r-- | sys/dev/acpi/acpivar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpivar.h b/sys/dev/acpi/acpivar.h index 1e1c37789b9..ccad337e833 100644 --- a/sys/dev/acpi/acpivar.h +++ b/sys/dev/acpi/acpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivar.h,v 1.17 2006/02/19 21:32:30 jordan Exp $ */ +/* $OpenBSD: acpivar.h,v 1.18 2006/02/20 21:39:06 jordan Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -134,7 +134,7 @@ struct acpi_softc { struct { int slp_typa; int slp_typb; - } sc_sleeptype[5]; + } sc_sleeptype[6]; struct { int gpe_type; |