diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2023-04-13 18:03:37 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2023-04-13 18:03:37 +0000 |
| commit | c159f76713d7c1cbfdfc0c81dd91a5483096cf6f (patch) | |
| tree | cd3219e8c8349c3748505320abda772e7429192a | |
| parent | 7cdfe51f30965a365e3e7c829396a56e2a7e5141 (diff) | |
kern: remove a double word in a KASSERT in subr_trap
- s/with with/with/
MFC after: 5 days
| -rw-r--r-- | sys/kern/subr_trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c index f9976b090771..1f35b8b6ba73 100644 --- a/sys/kern/subr_trap.c +++ b/sys/kern/subr_trap.c @@ -175,7 +175,7 @@ userret(struct thread *td, struct trapframe *frame) KASSERT(0, ("userret: Returning with sleep disabled")); } KASSERT(td->td_pinned == 0 || (td->td_pflags & TDP_CALLCHAIN) != 0, - ("userret: Returning with with pinned thread")); + ("userret: Returning with pinned thread")); KASSERT(td->td_vp_reserved == NULL, ("userret: Returning with preallocated vnode")); KASSERT((td->td_flags & (TDF_SBDRY | TDF_SEINTR | TDF_SERESTART)) == 0, |
