Fix the build after r333457

In r333457, the arguments to kern_pwritev() were accidentally
re-ordered as part of ANSIfication, breaking the build.
This commit is contained in:
Andrew Gallatin 2018-05-10 13:19:42 +00:00
parent 51d5442fef
commit d5cdcc3a06
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=333459

View File

@ -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;