Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Feb 2011 22:08:17 +0100
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        Dimitry Andric <dim@FreeBSD.org>
Cc:        svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org
Subject:   Re: svn commit: r218716 - head/sys/boot/common
Message-ID:  <20110215210817.GA64113@freebsd.org>
In-Reply-To: <201102152101.p1FL1D5Z044262@svn.freebsd.org>
References:  <201102152101.p1FL1D5Z044262@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
I put there u_int8_t for a reason. That reason being that
it's basically struct direct->d_type which is u_int8_t
and not uint8_t.

On Tue, Feb 15, 2011 at 09:01:13PM +0000, Dimitry Andric wrote:
> 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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20110215210817.GA64113>