1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Third argument to copyinstr() is a pointer to a size_t, not a pointer to a

u_int.
This commit is contained in:
John Baldwin 2002-11-07 22:33:28 +00:00
parent f544691671
commit 1c4df6ecd5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106594

View File

@ -95,7 +95,7 @@ hpfs_mount (
struct nameidata *ndp,
struct thread *td )
{
u_int size;
size_t size;
int err = 0;
struct vnode *devvp;
struct hpfs_args args;