Add missing paranthesis. Fixes PR 24144.

This commit is contained in:
martin 2004-01-19 08:42:20 +00:00
parent 1cbf165d86
commit dc94fda17b
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.162 2004/01/18 19:41:06 martin Exp $ */ /* $NetBSD: machdep.c,v 1.163 2004/01/19 08:42:20 martin Exp $ */
/*- /*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -78,7 +78,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.162 2004/01/18 19:41:06 martin Exp $"); __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.163 2004/01/19 08:42:20 martin Exp $");
#include "opt_ddb.h" #include "opt_ddb.h"
#include "opt_compat_netbsd.h" #include "opt_compat_netbsd.h"
@ -489,9 +489,9 @@ sendsig_siginfo(const ksiginfo_t *ksi, const sigset_t *mask)
break; break;
} }
uc.uc_flags = _UC_SIGMASK uc.uc_flags = _UC_SIGMASK |
| (p->p_sigctx.ps_sigstk.ss_flags & SS_ONSTACK) ((p->p_sigctx.ps_sigstk.ss_flags & SS_ONSTACK)
? _UC_SETSTACK : _UC_CLRSTACK; ? _UC_SETSTACK : _UC_CLRSTACK);
uc.uc_sigmask = *mask; uc.uc_sigmask = *mask;
uc.uc_link = NULL; uc.uc_link = NULL;
memset(&uc.uc_stack, 0, sizeof(uc.uc_stack)); memset(&uc.uc_stack, 0, sizeof(uc.uc_stack));