diff options
author | 2018-06-29 17:39:18 +0000 | |
---|---|---|
committer | 2018-06-29 17:39:18 +0000 | |
commit | d2eaebe9dbd2a33851deb57a5ffe863fcec435f9 (patch) | |
tree | d0215070c9b9dba9a1c1d8e4e9e05a470bc3500e /sys/dev/acpi/acpidebug.c | |
parent | Synchronize ber.c and ber.h across ldap, ldapd, and ypldap, and reduce diff (diff) | |
download | wireguard-openbsd-d2eaebe9dbd2a33851deb57a5ffe863fcec435f9.tar.xz wireguard-openbsd-d2eaebe9dbd2a33851deb57a5ffe863fcec435f9.zip |
Use <stdint.h> types.
ok mpi@, jung@, krw@, deraadt@
Diffstat (limited to 'sys/dev/acpi/acpidebug.c')
-rw-r--r-- | sys/dev/acpi/acpidebug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpidebug.c b/sys/dev/acpi/acpidebug.c index f997be1f428..3f8b789bce8 100644 --- a/sys/dev/acpi/acpidebug.c +++ b/sys/dev/acpi/acpidebug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpidebug.c,v 1.30 2015/03/14 03:38:46 jsg Exp $ */ +/* $OpenBSD: acpidebug.c,v 1.31 2018/06/29 17:39:18 kettenis Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@openbsd.org> * @@ -42,7 +42,7 @@ extern void aml_disasm(struct aml_scope *scope, int lvl, const char *db_aml_objtype(struct aml_value *); const char *db_opregion(int); int db_parse_name(void); -void db_aml_dump(int, u_int8_t *); +void db_aml_dump(int, uint8_t *); void db_aml_showvalue(struct aml_value *); void db_aml_walktree(struct aml_node *); void db_disprint(void *, const char *, ...); @@ -78,7 +78,7 @@ db_opregion(int id) return ""; } void -db_aml_dump(int len, u_int8_t *buf) +db_aml_dump(int len, uint8_t *buf) { int idx; |