aboutsummaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorMateusz Guzik <mjg@FreeBSD.org>2020-02-01 20:34:43 +0000
committerMateusz Guzik <mjg@FreeBSD.org>2020-02-01 20:34:43 +0000
commit45757984f8698211fcc8cbaabb4267c7b91e7f34 (patch)
treed8b3364d7927f83f01da6bf6039d5cd3c435b000 /sys/sys
parent672e12255da9b211d5318889ed9441ffc63c9f30 (diff)
downloadsrc-45757984f8698211fcc8cbaabb4267c7b91e7f34.tar.gz
src-45757984f8698211fcc8cbaabb4267c7b91e7f34.zip
vfs: consistently use size_t for buflen around VOP_VPTOCNP
Notes
Notes: svn path=/head/; revision=357383
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/vnode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h
index 247e4a9a9420..b43d73099058 100644
--- a/sys/sys/vnode.h
+++ b/sys/sys/vnode.h
@@ -631,7 +631,7 @@ int insmntque(struct vnode *vp, struct mount *mp);
u_quad_t init_va_filerev(void);
int speedup_syncer(void);
int vn_vptocnp(struct vnode **vp, struct ucred *cred, char *buf,
- u_int *buflen);
+ size_t *buflen);
int vn_fullpath(struct thread *td, struct vnode *vn,
char **retbuf, char **freebuf);
int vn_fullpath_global(struct thread *td, struct vnode *vn,