Use a pointer to a size_t for the 4th argument to copyinstr-

not a pointer to a u_int.
This commit is contained in:
Matt Jacob 2000-12-09 22:31:34 +00:00
parent 25b53bb41f
commit f5a5fd9ed1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=69806
2 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ ext2_mount(mp, path, data, ndp, p)
struct ufs_args args;
struct ufsmount *ump = 0;
register struct ext2_sb_info *fs;
u_int size;
size_t size;
int error, flags;
mode_t accessmode;

View File

@ -189,7 +189,7 @@ ext2_mount(mp, path, data, ndp, p)
struct ufs_args args;
struct ufsmount *ump = 0;
register struct ext2_sb_info *fs;
u_int size;
size_t size;
int error, flags;
mode_t accessmode;