whitespace: rewrap to match case directly above

It's easier to visually diff the two case blocks if there aren't
gratutious whitespace differences.

Sponsored by:	DARPA
This commit is contained in:
Brooks Davis 2023-02-03 00:37:31 +00:00
parent 7926a01ed7
commit 5c274b3622

View File

@ -1151,8 +1151,8 @@ weed_inhib(int mode, struct thread *td2, struct proc *p)
* boundary, TDF_ALLPROCSUSP is used to avoid immediate
* un-suspend.
*/
if (TD_IS_SUSPENDED(td2) && (td2->td_flags &
TDF_ALLPROCSUSP) == 0) {
if (TD_IS_SUSPENDED(td2) &&
(td2->td_flags & TDF_ALLPROCSUSP) == 0) {
wakeup_swapper |= thread_unsuspend_one(td2, p, false);
thread_lock(td2);
goto restart;