mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Revert "Add braces in initializers for GCC 4.9 or older"
This reverts commit 8aa2a9e033
.
as not all targets need braces.
This commit is contained in:
@ -76,7 +76,7 @@ do_recvmsg_ancillary (bool use_multi_call, struct mmsghdr *mmhdr,
|
||||
static void
|
||||
do_test_large_buffer (bool mc)
|
||||
{
|
||||
struct mmsghdr mmhdr = { { 0 } };
|
||||
struct mmsghdr mmhdr = { 0 };
|
||||
/* It should be large enough for either timeval/timespec and the
|
||||
64 time type as well. */
|
||||
|
||||
@ -147,7 +147,7 @@ do_test_large_buffer (bool mc)
|
||||
static void
|
||||
do_test_small_buffer (bool mc)
|
||||
{
|
||||
struct mmsghdr mmhdr = { { 0 } };
|
||||
struct mmsghdr mmhdr = { 0 };
|
||||
|
||||
/* Enable 32 bit timeval precision and check if no 64 bit timeval stamp
|
||||
is created. */
|
||||
|
Reference in New Issue
Block a user