Fix a 64-bitism, use size_t instead of u_int for 4th arg to copyinstr.

This commit is contained in:
John Baldwin 2000-09-11 05:45:06 +00:00
parent 38a6ecf4de
commit 2c98102ef1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=65722

View File

@ -74,7 +74,7 @@ kernfs_mount(mp, path, data, ndp, p)
struct proc *p;
{
int error = 0;
u_int size;
size_t size;
struct kernfs_mount *fmp;
struct vnode *rvp;