summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-11-07 22:33:28 +0000
committerjhb <jhb@FreeBSD.org>2002-11-07 22:33:28 +0000
commit1ca1a3af686820fd6c71e8135cc3db332c52758e (patch)
tree9de904d8ba8b69fcf551e8adcb460fc6ab3cfc73
parent6a62fdc1c97772e77ca2ef9353ae4595c2c1f1b1 (diff)
downloadFreeBSD-src-1ca1a3af686820fd6c71e8135cc3db332c52758e.zip
FreeBSD-src-1ca1a3af686820fd6c71e8135cc3db332c52758e.tar.gz
Third argument to copyinstr() is a pointer to a size_t, not a pointer to a
u_int.
-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 a4e1bb8..1242e84 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;
OpenPOWER on IntegriCloud