mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix function name in error messages.
This commit is contained in:
parent
1248463c17
commit
212bc4b337
1 changed files with 2 additions and 2 deletions
|
|
@ -2029,9 +2029,9 @@ tdsendsignal(struct proc *p, struct thread *td, int sig, ksiginfo_t *ksi)
|
|||
PROC_LOCK_ASSERT(p, MA_OWNED);
|
||||
|
||||
if (!_SIG_VALID(sig))
|
||||
panic("tdsignal(): invalid signal %d", sig);
|
||||
panic("%s(): invalid signal %d", __func__, sig);
|
||||
|
||||
KASSERT(ksi == NULL || !KSI_ONQ(ksi), ("tdsignal: ksi on queue"));
|
||||
KASSERT(ksi == NULL || !KSI_ONQ(ksi), ("%s: ksi on queue", __func__));
|
||||
|
||||
/*
|
||||
* IEEE Std 1003.1-2001: return success when killing a zombie.
|
||||
|
|
|
|||
Loading…
Reference in a new issue