Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Nov 2021 18:37:00 GMT
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: f0da2a14670a - main - syscalls: unwrap a long line
Message-ID:  <202111151837.1AFIb0EF067922@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by brooks:

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

commit f0da2a14670a34d1decfbc17800c4dc4e4ebc324
Author:     Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2021-11-15 18:34:27 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2021-11-15 18:34:27 +0000

    syscalls: unwrap a long line
    
    Style dictates that each variable is on a single line
    
    Reviewed by:    kib
---
 sys/kern/syscalls.master | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 0965d5771c5a..5b5bc70fb21a 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -448,8 +448,7 @@
 63	AUE_NULL	COMPAT {
 		int getkerninfo(
 		    int op,
-		    _Out_writes_bytes_opt(
-		    *size) char *where,
+		    _Out_writes_bytes_opt(*size) char *where,
 		    _Inout_opt_ size_t *size,
 		    int arg
 		);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111151837.1AFIb0EF067922>