From d5cdcc3a06750cb58bdd5d140a82a49f7b714f07 Mon Sep 17 00:00:00 2001 From: Andrew Gallatin Date: Thu, 10 May 2018 13:19:42 +0000 Subject: [PATCH] Fix the build after r333457 In r333457, the arguments to kern_pwritev() were accidentally re-ordered as part of ANSIfication, breaking the build. --- sys/kern/sys_generic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/sys_generic.c b/sys/kern/sys_generic.c index 5a012e68fee..649cfb191b7 100644 --- a/sys/kern/sys_generic.c +++ b/sys/kern/sys_generic.c @@ -519,7 +519,7 @@ sys_pwritev(struct thread *td, struct pwritev_args *uap) } 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;