aboutsummaryrefslogtreecommitdiff
path: root/stand/common/pnp.c
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2018-03-13 16:33:00 +0000
committerWarner Losh <imp@FreeBSD.org>2018-03-13 16:33:00 +0000
commit56e53cb8ef000c3ef72337a4095987a932cdedef (patch)
treebd53d80c2702e6ceca59a093eb5d39ec37c00c59 /stand/common/pnp.c
parent011bbaa5138e04e38ff28537ae734216bdbfe270 (diff)
downloadsrc-56e53cb8ef000c3ef72337a4095987a932cdedef.tar.gz
src-56e53cb8ef000c3ef72337a4095987a932cdedef.zip
Prefer uintXX_t to u_intXX_t
A foolish consistency is the hobgoblin of little minds, adored by little statesmen and philosophers and divines. With consistency a great soul has simply nothing to do. -- Ralph Waldo Emerson
Notes
Notes: svn path=/head/; revision=330864
Diffstat (limited to 'stand/common/pnp.c')
-rw-r--r--stand/common/pnp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/common/pnp.c b/stand/common/pnp.c
index 31a0de9dff4d..4759c4417d19 100644
--- a/stand/common/pnp.c
+++ b/stand/common/pnp.c
@@ -169,7 +169,7 @@ pnp_addinfo(struct pnpinfo *pi)
* where 'AAA' is the EISA vendor ID, II is the product ID and RR the revision ID.
*/
char *
-pnp_eisaformat(u_int8_t *data)
+pnp_eisaformat(uint8_t *data)
{
static char idbuf[8];
const char hextoascii[] = "0123456789abcdef";