Eeze: Silence clang warning

This commit is contained in:
Jean-Philippe Andre 2015-04-21 20:31:39 +09:00
parent 98f56df657
commit 255e71d83e
1 changed files with 3 additions and 1 deletions

View File

@ -398,7 +398,9 @@ static void
sigs_setup(void)
{
sigset_t sigs = {{0}};
struct sigaction s = {{0}};
struct sigaction s;
memset(&s, 0, sizeof(s));
sigfillset(&sigs);
sigdelset(&sigs, SIGSEGV);