fix gcc -Werror -Wmissing-braces problem

mbstate_t(this is opaque object)'s initializer should be ``{ 0 }'',
so changed 1st field of union from character array to integer.
This commit is contained in:
tnozaki 2006-10-04 13:51:59 +00:00
parent c72f004e7c
commit 44eb8f042e
17 changed files with 35 additions and 35 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: findfp.c,v 1.20 2003/08/07 16:43:23 agc Exp $ */
/* $NetBSD: findfp.c,v 1.21 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)findfp.c 8.2 (Berkeley) 1/4/94";
#else
__RCSID("$NetBSD: findfp.c,v 1.20 2003/08/07 16:43:23 agc Exp $");
__RCSID("$NetBSD: findfp.c,v 1.21 2006/10/04 13:52:00 tnozaki Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@ -70,7 +70,7 @@ static struct __sfileext usualext[FOPEN_MAX - 3];
static struct glue uglue = { 0, FOPEN_MAX - 3, usual };
#ifdef _REENTRANT
#define STDEXT { {0}, {{{0}}}, MUTEX_INITIALIZER, COND_INITIALIZER, NULL, 0, 0}
#define STDEXT { {0}, {{0}}, MUTEX_INITIALIZER, COND_INITIALIZER, NULL, 0, 0}
struct __sfileext __sFext[3] = { STDEXT,
STDEXT,
STDEXT};

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.18 2005/12/11 12:16:16 christos Exp $ */
/* $NetBSD: ansi.h,v 1.19 2006/10/04 13:51:59 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -95,8 +95,8 @@ typedef struct {
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.3 2005/12/11 12:16:25 christos Exp $ */
/* $NetBSD: ansi.h,v 1.4 2006/10/04 13:51:59 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -90,8 +90,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.6 2005/12/11 12:16:46 christos Exp $ */
/* $NetBSD: ansi.h,v 1.7 2006/10/04 13:51:59 tnozaki Exp $ */
/*
* Copyright (c) 1990, 1993
@ -98,8 +98,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.6 2005/12/11 12:17:37 christos Exp $ */
/* $NetBSD: ansi.h,v 1.7 2006/10/04 13:51:59 tnozaki Exp $ */
/* $OpenBSD: ansi.h,v 1.4 2000/02/22 17:29:12 millert Exp $ */
@ -88,8 +88,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
double __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.18 2005/12/11 12:17:43 christos Exp $ */
/* $NetBSD: ansi.h,v 1.19 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -90,8 +90,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.2 2006/07/07 06:42:32 cherry Exp $ */
/* $NetBSD: ansi.h,v 1.3 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -99,8 +99,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.17 2005/12/11 12:17:53 christos Exp $ */
/* $NetBSD: ansi.h,v 1.18 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -89,8 +89,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.20 2005/12/11 12:18:09 christos Exp $ */
/* $NetBSD: ansi.h,v 1.21 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -96,8 +96,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.20 2006/09/04 01:04:29 simonb Exp $ */
/* $NetBSD: ansi.h,v 1.21 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -90,8 +90,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.2 2005/12/11 12:18:34 christos Exp $ */
/* $NetBSD: ansi.h,v 1.3 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -102,8 +102,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.22 2005/12/11 12:18:43 christos Exp $ */
/* $NetBSD: ansi.h,v 1.23 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -100,8 +100,8 @@ typedef struct {
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.9 2006/05/15 08:57:59 uwe Exp $ */
/* $NetBSD: ansi.h,v 1.10 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -88,8 +88,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.9 2005/12/11 12:19:00 christos Exp $ */
/* $NetBSD: ansi.h,v 1.10 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -98,8 +98,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.17 2005/12/11 12:19:05 christos Exp $ */
/* $NetBSD: ansi.h,v 1.18 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -89,8 +89,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.11 2005/12/11 12:19:10 christos Exp $ */
/* $NetBSD: ansi.h,v 1.12 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -89,8 +89,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ansi.h,v 1.19 2005/12/11 12:19:34 christos Exp $ */
/* $NetBSD: ansi.h,v 1.20 2006/10/04 13:52:00 tnozaki Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -100,8 +100,8 @@
* stream conversions. The content must not be referenced by user programs.
*/
typedef union {
char __mbstate8[128];
__int64_t __mbstateL; /* for alignment */
char __mbstate8[128];
} __mbstate_t;
#define _BSD_MBSTATE_T_ __mbstate_t /* mbstate_t */