git: 3660e76a2220 - main - syscalls: correct a couple style issues
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 29 Nov 2021 22:05:27 UTC
The branch main has been updated by brooks:
URL: https://cgit.FreeBSD.org/src/commit/?id=3660e76a2220d5218b4c28c2d2f2c90142f1ec4e
commit 3660e76a2220d5218b4c28c2d2f2c90142f1ec4e
Author: Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2021-11-29 22:02:59 +0000
Commit: Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2021-11-29 22:04:41 +0000
syscalls: correct a couple style issues
Reviewed by: kib, imp
---
sys/kern/syscalls.master | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 45e4bb8d830e..a989d7f5f9b6 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1743,7 +1743,7 @@
}
335 AUE_NULL STD|CAPENABLED {
int utrace(
- _In_reads_bytes_(len) const void *addr,
+ _In_reads_bytes_(len) const void *addr,
size_t len
);
}
@@ -2337,8 +2337,7 @@
ssize_t extattr_list_link(
_In_z_ const char *path,
int attrnamespace,
- _Out_writes_bytes_opt_(nbytes)
- void *data,
+ _Out_writes_bytes_opt_(nbytes) void *data,
size_t nbytes
);
}