Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 05 Aug 2015 11:24:32 -0600
From:      Ian Lepore <ian@freebsd.org>
To:        Jung-uk Kim <jkim@FreeBSD.org>
Cc:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r286328 - head/sys/x86/include
Message-ID:  <1438795472.70393.178.camel@freebsd.org>
In-Reply-To: <201508051721.t75HLhUo033255@repo.freebsd.org>
References:  <201508051721.t75HLhUo033255@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 2015-08-05 at 17:21 +0000, Jung-uk Kim wrote:
> Author: jkim
> Date: Wed Aug  5 17:21:42 2015
> New Revision: 286328
> URL: https://svnweb.freebsd.org/changeset/base/286328
> 
> Log:
>   Fix more style issues.
>   
>   Submitted by:	bde
> 
> Modified:
>   head/sys/x86/include/_types.h
> 
> Modified: head/sys/x86/include/_types.h
> ==============================================================================
> --- head/sys/x86/include/_types.h	Wed Aug  5 17:05:35 2015	(r286327)
> +++ head/sys/x86/include/_types.h	Wed Aug  5 17:21:42 2015	(r286328)
> @@ -155,10 +155,10 @@ typedef	__builtin_va_list	__va_list;	/* 
>  #else
>  #ifdef __LP64__
>  struct __s_va_list {
> -	__uint32_t	pad1[2];	/* gp_offset, fp_offset */
> -	__uint64_t	pad2[2];	/* overflow_arg_area, reg_save_area */
> +	__uint32_t	_pad1[2];	/* gp_offset, fp_offset */
> +	__uint64_t	_pad2[2];	/* overflow_arg_area, reg_save_area */
>  };
> -typedef struct __s_va_list	__va_list;
> +typedef	struct __s_va_list	__va_list;
>  #else
>  typedef	char *			__va_list;
>  #endif
> 

You've just changed it from the style that's wrong on Wednesdays back to
the style that's wrong on Mondays.  So I guess you'll be getting a new
mail about this next week.

-- Ian





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