svn commit: r340172 - head/sys/kern

Brooks Davis brooks at FreeBSD.org
Tue Nov 6 00:09:45 UTC 2018


Author: brooks
Date: Tue Nov  6 00:09:43 2018
New Revision: 340172
URL: https://svnweb.freebsd.org/changeset/base/340172

Log:
  Fix a couple indentation errors in r339958.

Modified:
  head/sys/kern/syscalls.master

Modified: head/sys/kern/syscalls.master
==============================================================================
--- head/sys/kern/syscalls.master	Tue Nov  6 00:05:17 2018	(r340171)
+++ head/sys/kern/syscalls.master	Tue Nov  6 00:09:43 2018	(r340172)
@@ -761,8 +761,8 @@
 120	AUE_READV	STD {
 		int readv(
 		    int fd,
-		   _Inout_updates_(iovcnt) struct iovec *iovp,
-		   u_int iovcnt
+		    _Inout_updates_(iovcnt) struct iovec *iovp,
+		    u_int iovcnt
 		);
 	}
 121	AUE_WRITEV	STD {
@@ -848,7 +848,7 @@
 		    int s,
 		    _In_reads_bytes_(len) caddr_t buf,
 		    size_t len,
-		     int flags,
+		    int flags,
 		    _In_reads_bytes_opt_(tolen) caddr_t to,
 		    int tolen
 		);


More information about the svn-src-all mailing list