kern: remove a double word in a KASSERT in subr_trap

- s/with with/with/

MFC after:	5 days
This commit is contained in:
Gordon Bergling 2023-04-13 20:03:37 +02:00
parent 7cdfe51f30
commit c159f76713

View File

@ -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,