aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-11-07 22:33:28 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-11-07 22:33:28 +0000
commit1c4df6ecd545b9d6c596174159710b5156d1006b (patch)
tree9de904d8ba8b69fcf551e8adcb460fc6ab3cfc73 /sys/fs
parentf5446916717a2937f6e7e43e917f1ab1dff22294 (diff)
downloadsrc-1c4df6ecd545b9d6c596174159710b5156d1006b.tar.gz
src-1c4df6ecd545b9d6c596174159710b5156d1006b.zip
Third argument to copyinstr() is a pointer to a size_t, not a pointer to a
u_int.
Notes
Notes: svn path=/head/; revision=106594
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/hpfs/hpfs_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/hpfs/hpfs_vfsops.c b/sys/fs/hpfs/hpfs_vfsops.c
index a4e1bb87b030..1242e8419ce2 100644
--- a/sys/fs/hpfs/hpfs_vfsops.c
+++ b/sys/fs/hpfs/hpfs_vfsops.c
@@ -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;