mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a typo that broke the pc98 kernel build.
Reported by: des@'s tinderbox Pointy hat to: jhb Approved by: re (blanket/scottl)
This commit is contained in:
parent
cc3e724564
commit
aa7ba84232
2 changed files with 2 additions and 2 deletions
|
|
@ -567,7 +567,7 @@ sendsig(catcher, sig, mask, code)
|
|||
p = td->td_proc;
|
||||
PROC_LOCK_ASSERT(p, MA_OWNED);
|
||||
psp = p->p_sigacts;
|
||||
mtx_assert(&psp->ps_mtx,.MA_OWNED);
|
||||
mtx_assert(&psp->ps_mtx, MA_OWNED);
|
||||
#ifdef COMPAT_FREEBSD4
|
||||
if (SIGISMEMBER(psp->ps_freebsd4, sig)) {
|
||||
freebsd4_sendsig(catcher, sig, mask, code);
|
||||
|
|
|
|||
|
|
@ -567,7 +567,7 @@ sendsig(catcher, sig, mask, code)
|
|||
p = td->td_proc;
|
||||
PROC_LOCK_ASSERT(p, MA_OWNED);
|
||||
psp = p->p_sigacts;
|
||||
mtx_assert(&psp->ps_mtx,.MA_OWNED);
|
||||
mtx_assert(&psp->ps_mtx, MA_OWNED);
|
||||
#ifdef COMPAT_FREEBSD4
|
||||
if (SIGISMEMBER(psp->ps_freebsd4, sig)) {
|
||||
freebsd4_sendsig(catcher, sig, mask, code);
|
||||
|
|
|
|||
Loading…
Reference in a new issue