mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +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:
@@ -80,7 +80,7 @@ sleep_and_check_sigchld (void *closure)
|
||||
sprintf (cmd, "sleep %lf" , *seconds);
|
||||
TEST_COMPARE (system (cmd), 0);
|
||||
|
||||
sigset_t blocked = {{0}};
|
||||
sigset_t blocked = {0};
|
||||
TEST_COMPARE (sigprocmask (SIG_BLOCK, NULL, &blocked), 0);
|
||||
TEST_COMPARE (sigismember (&blocked, SIGCHLD), 0);
|
||||
return NULL;
|
||||
|
Reference in New Issue
Block a user