1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-23 11:18:54 +00:00

In sys/boot/common/ufsread.c, use uint8_t instead of u_int8_t.

Submitted by:	mdf
This commit is contained in:
Dimitry Andric 2011-02-15 21:01:13 +00:00
parent 97bba30626
commit 80b9f8b017
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=218716

View File

@ -122,7 +122,7 @@ lookup(const char *path)
const char *s;
ino_t ino;
ssize_t n;
u_int8_t dt;
uint8_t dt;
ino = ROOTINO;
dt = DT_DIR;