diff options
author | 2009-08-07 00:04:15 +0000 | |
---|---|---|
committer | 2009-08-07 00:04:15 +0000 | |
commit | ee5874ad80db4df270a9972b22110fc4d8f08dca (patch) | |
tree | 65eca86acf21908275f25f9db9136b4f8b398c8e | |
parent | encode special or unsafe characters defined by rfc1738. as a result, (diff) | |
download | wireguard-openbsd-ee5874ad80db4df270a9972b22110fc4d8f08dca.tar.xz wireguard-openbsd-ee5874ad80db4df270a9972b22110fc4d8f08dca.zip |
pull aml/aml_parse.h; otherwise it would take aml_parse_objectlist
as an int; and not a pointer; which would be wrong on 64-bit archs
oki marco@
-rw-r--r-- | usr.sbin/acpidump/acpi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/acpidump/acpi.c b/usr.sbin/acpidump/acpi.c index 440ddf6bf68..86d397b6798 100644 --- a/usr.sbin/acpidump/acpi.c +++ b/usr.sbin/acpidump/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.6 2008/06/04 17:23:24 kettenis Exp $ */ +/* $OpenBSD: acpi.c,v 1.7 2009/08/07 00:04:15 martynas Exp $ */ /*- * Copyright (c) 1998 Doug Rabson * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@FreeBSD.org> @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: acpi.c,v 1.6 2008/06/04 17:23:24 kettenis Exp $ + * $Id: acpi.c,v 1.7 2009/08/07 00:04:15 martynas Exp $ * $FreeBSD: src/usr.sbin/acpi/acpidump/acpi.c,v 1.3 2000/11/08 02:37:00 iwasaki Exp $ */ #include <sys/types.h> @@ -42,6 +42,7 @@ #include "aml/aml_env.h" #include "aml/aml_common.h" +#include "aml/aml_parse.h" #define BEGIN_COMMENT "/*\n" #define END_COMMENT " */\n" |