mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
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:
parent
51d5442fef
commit
d5cdcc3a06
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue