size_max should be unsigned, as such, use size_t here.

This commit is contained in:
Xin LI 2007-12-06 23:19:05 +00:00
parent 91f2b6797a
commit 745973bd99

View File

@ -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;