From c48820a4487e6cff34a77e4b0408a4ada55d7a34 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Wed, 29 May 2024 09:53:20 -0600 Subject: [PATCH] minor style tweak. checkstyle9 doesn't check for this construct... Fixes: 6d849754b996 --- sys/compat/linux/linux_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 73a4c49a1a6..e789586160b 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -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)); }