Date: Thu, 10 May 2018 13:19:43 +0000 (UTC) From: Andrew Gallatin <gallatin@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333459 - head/sys/kern Message-ID: <201805101319.w4ADJhxo084555@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805101319.w4ADJhxo084555>