uintmax_t is a better type here...

Submitted by:	avg@
This commit is contained in:
Warner Losh 2011-05-12 19:10:00 +00:00
parent bbe2ca7533
commit 8d917b4b49
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=221819

View File

@ -462,7 +462,7 @@ print_vnode_info(struct procstat *procstat, struct filestat *fst)
printf(" %6s", vn.vn_devname);
}
} else
printf(" %6ju", (intmax_t)vn.vn_size);
printf(" %6ju", (uintmax_t)vn.vn_size);
print_access_flags(fst->fs_fflags);
}