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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user