1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-17 15:27:36 +00:00

Fix compliation on sparc64.

Change arg from uint32_t to size_t to match prototypes.
This commit is contained in:
Alfred Perlstein 2003-11-15 01:25:26 +00:00
parent d4346413c3
commit e549a574c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=122722

View File

@ -717,7 +717,8 @@ nfsm_v4build_remove_xx(struct nfs4_compound *cp, const char *name, u_int namelen
int
nfsm_v4build_attrs_xx(struct vattr *vap, struct mbuf **mb, caddr_t *bpos)
{
uint32_t *tl, *attrlenp, *bmvalp, siz, len;
uint32_t *tl, *attrlenp, *bmvalp, len;
size_t siz;
tl = nfsm_build_xx(4 * NFSX_UNSIGNED, mb, bpos);