svn commit: r333459 - head/sys/kern

Andrew Gallatin gallatin at FreeBSD.org
Thu May 10 13:19:43 UTC 2018


Author: gallatin
Date: Thu May 10 13:19:42 2018
New Revision: 333459
URL: https://svnweb.freebsd.org/changeset/base/333459

Log:
  Fix the build after r333457
  
  In r333457, the arguments to kern_pwritev() were accidentally
  re-ordered as part of ANSIfication, breaking the build.

Modified:
  head/sys/kern/sys_generic.c

Modified: head/sys/kern/sys_generic.c
==============================================================================
--- head/sys/kern/sys_generic.c	Thu May 10 12:25:01 2018	(r333458)
+++ head/sys/kern/sys_generic.c	Thu May 10 13:19:42 2018	(r333459)
@@ -519,7 +519,7 @@ sys_pwritev(struct thread *td, struct pwritev_args *ua
 }
 
 int
-kern_pwritev(struct thread *td, struct uio *auio, int fd, off_t offset)
+kern_pwritev(struct thread *td, int fd, struct uio *auio, off_t offset)
 {
 	struct file *fp;
 	int error;


More information about the svn-src-head mailing list