Use size_t instead of u_int for sizes.

This commit is contained in:
Doug Rabson 1998-06-04 17:21:39 +00:00
parent 6589ab80a9
commit 8435e0aef5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36646

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ffs_vfsops.c 8.31 (Berkeley) 5/20/95
* $Id: ffs_vfsops.c,v 1.81 1998/05/06 05:29:40 msmith Exp $
* $Id: ffs_vfsops.c,v 1.82 1998/05/18 06:38:18 julian Exp $
*/
#include "opt_devfs.h" /* for SLICE */
@ -139,7 +139,7 @@ ffs_mount( mp, path, data, ndp, p)
struct nameidata *ndp; /* mount point credentials*/
struct proc *p; /* process requesting mount*/
{
u_int size;
size_t size;
int err = 0;
struct vnode *devvp;
@ -588,7 +588,7 @@ ffs_mountfs(devvp, mp, p, malloctype)
int32_t *lp;
struct ucred *cred;
u_int64_t maxfilesize; /* XXX */
u_int strsize;
size_t strsize;
int ncount;
dev = devvp->v_rdev;