wrap a line better
authorderaadt <deraadt@openbsd.org>
Fri, 23 Dec 2022 05:35:08 +0000 (05:35 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 23 Dec 2022 05:35:08 +0000 (05:35 +0000)
sys/kern/kern_pledge.c

index 13fcf77..0c3a697 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_pledge.c,v 1.300 2022/12/05 23:18:37 deraadt Exp $       */
+/*     $OpenBSD: kern_pledge.c,v 1.301 2022/12/23 05:35:08 deraadt Exp $       */
 
 /*
  * Copyright (c) 2015 Nicholas Marriott <nicm@openbsd.org>
@@ -430,8 +430,7 @@ parsepledges(struct proc *p, const char *kname, const char *promises, u_int64_t
        int error;
 
        rbuf = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
-       error = copyinstr(promises, rbuf, MAXPATHLEN,
-           &rbuflen);
+       error = copyinstr(promises, rbuf, MAXPATHLEN, &rbuflen);
        if (error) {
                free(rbuf, M_TEMP, MAXPATHLEN);
                return (error);