svn commit: r286328 - head/sys/x86/include

Ian Lepore ian at freebsd.org
Wed Aug 5 17:25:41 UTC 2015


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




More information about the svn-src-all mailing list