1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-29 08:08:37 +00:00

Correct arguments order.

This commit is contained in:
Pawel Jakub Dawidek 2010-06-26 21:44:45 +00:00
parent da6ee3126b
commit 3297cdd096
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209543

View File

@ -506,8 +506,8 @@ vn_read(fp, uio, active_cred, flags, td)
struct file *fp;
struct uio *uio;
struct ucred *active_cred;
struct thread *td;
int flags;
struct thread *td;
{
struct vnode *vp;
int error, ioflag;
@ -572,8 +572,8 @@ vn_write(fp, uio, active_cred, flags, td)
struct file *fp;
struct uio *uio;
struct ucred *active_cred;
struct thread *td;
int flags;
struct thread *td;
{
struct vnode *vp;
struct mount *mp;