diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-08-07 00:04:16 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-08-07 00:04:16 +0000 |
commit | 8a1a49f023949918067191aa6707e16da1604497 (patch) | |
tree | c511da26cc2b967537ffbe514c1a72331dc4f5fb /usr.sbin | |
parent | 5011a8e11b42f584c52e012c709304b6f8716109 (diff) |
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@
Diffstat (limited to 'usr.sbin')
-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" |