diff options
author | dt <dt@FreeBSD.org> | 1999-04-21 09:41:07 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1999-04-21 09:41:07 +0000 |
commit | 306f74ff3a1149a222f14620a2bf5b987aef2772 (patch) | |
tree | ecae11a2b37082ed18300e98c2ccc99989294ee9 /sys/ufs | |
parent | 6f81d00cd6fdb1abac221ecc15d02bc33165c921 (diff) | |
download | FreeBSD-src-306f74ff3a1149a222f14620a2bf5b987aef2772.zip FreeBSD-src-306f74ff3a1149a222f14620a2bf5b987aef2772.tar.gz |
Change type of a variable from u_int to size_t, so that pointer to it may be
used as a last argument to copyinstr().
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/mfs/mfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index 6f1697b..e7c0aea 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_vfsops.c 8.11 (Berkeley) 6/19/95 - * $Id: mfs_vfsops.c,v 1.58 1999/04/05 06:39:10 peter Exp $ + * $Id: mfs_vfsops.c,v 1.59 1999/04/06 03:08:43 peter Exp $ */ @@ -184,7 +184,7 @@ mfs_mount(mp, path, data, ndp, p) u_char *base; #endif struct mfsnode *mfsp; - u_int size; + size_t size; int flags, err; /* |