summaryrefslogtreecommitdiffstats
path: root/sys/fs/tmpfs/tmpfs_vfsops.c
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2007-12-06 23:19:05 +0000
committerdelphij <delphij@FreeBSD.org>2007-12-06 23:19:05 +0000
commit17d10d92fe357258143ab885b6eb4ef4f0a227af (patch)
tree2f52031965644f44a404494d5c283b6cf06f0acb /sys/fs/tmpfs/tmpfs_vfsops.c
parentf919b8c32d026ac7e5622aa41fb376c2978ff8d1 (diff)
downloadFreeBSD-src-17d10d92fe357258143ab885b6eb4ef4f0a227af.zip
FreeBSD-src-17d10d92fe357258143ab885b6eb4ef4f0a227af.tar.gz
size_max should be unsigned, as such, use size_t here.
Diffstat (limited to 'sys/fs/tmpfs/tmpfs_vfsops.c')
-rw-r--r--sys/fs/tmpfs/tmpfs_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/tmpfs/tmpfs_vfsops.c b/sys/fs/tmpfs/tmpfs_vfsops.c
index fc2e1ee..6253990 100644
--- a/sys/fs/tmpfs/tmpfs_vfsops.c
+++ b/sys/fs/tmpfs/tmpfs_vfsops.c
@@ -195,7 +195,7 @@ tmpfs_mount(struct mount *mp, struct thread *td)
int error;
/* Size counters. */
ino_t nodes_max;
- off_t size_max;
+ size_t size_max;
/* Root node attributes. */
uid_t root_uid;
OpenPOWER on IntegriCloud