minor style tweak.

checkstyle9 doesn't check for this construct...

Fixes: 6d849754b9
This commit is contained in:
Warner Losh 2024-05-29 09:53:20 -06:00
parent 175b2c00a6
commit c48820a448

View file

@ -1820,7 +1820,7 @@ linux_prctl(struct thread *td, struct linux_prctl_args *args)
error = EINVAL;
break;
case LINUX_PR_SET_CHILD_SUBREAPER:
if (args->arg2 == 0){
if (args->arg2 == 0) {
return (kern_procctl(td, P_PID, 0, PROC_REAP_RELEASE,
NULL));
}