svn commit: r218716 - head/sys/boot/common

Dimitry Andric dim at FreeBSD.org
Tue Feb 15 21:01:13 UTC 2011


Author: dim
Date: Tue Feb 15 21:01:13 2011
New Revision: 218716
URL: http://svn.freebsd.org/changeset/base/218716

Log:
  In sys/boot/common/ufsread.c, use uint8_t instead of u_int8_t.
  
  Submitted by:	mdf

Modified:
  head/sys/boot/common/ufsread.c

Modified: head/sys/boot/common/ufsread.c
==============================================================================
--- head/sys/boot/common/ufsread.c	Tue Feb 15 20:53:01 2011	(r218715)
+++ head/sys/boot/common/ufsread.c	Tue Feb 15 21:01:13 2011	(r218716)
@@ -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;


More information about the svn-src-head mailing list