The branch main has been updated by imp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=c48820a4487e6cff34a77e4b0408a4ada55d7a34

commit c48820a4487e6cff34a77e4b0408a4ada55d7a34
Author:     Warner Losh <[email protected]>
AuthorDate: 2024-05-29 15:53:20 +0000
Commit:     Warner Losh <[email protected]>
CommitDate: 2024-05-29 15:53:20 +0000

    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 73a4c49a1a6f..e789586160b6 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));
                }

Reply via email to