diff options
author | mux <mux@FreeBSD.org> | 2002-10-06 11:42:14 +0000 |
---|---|---|
committer | mux <mux@FreeBSD.org> | 2002-10-06 11:42:14 +0000 |
commit | 19c5a270b8672d4497efb3277d1cb0978b98a3bb (patch) | |
tree | 7ed0cacc2869b2dc6999c8ce662050fd0a34314c | |
parent | 91b15ccd4acb7520fc9933934b9afb7393bb7c2c (diff) | |
download | FreeBSD-src-19c5a270b8672d4497efb3277d1cb0978b98a3bb.zip FreeBSD-src-19c5a270b8672d4497efb3277d1cb0978b98a3bb.tar.gz |
Fix a warning on 64 bits platforms: copystr() takes a size_t *,
not an int *.
-rw-r--r-- | sys/fs/unionfs/union_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/unionfs/union_vfsops.c b/sys/fs/unionfs/union_vfsops.c index 249e126..a25075c 100644 --- a/sys/fs/unionfs/union_vfsops.c +++ b/sys/fs/unionfs/union_vfsops.c @@ -84,7 +84,7 @@ union_mount(mp, ndp, td) char *cp = 0, *target; int op; int len; - u_int size; + size_t size; UDEBUG(("union_mount(mp = %p)\n", (void *)mp)); |