In prmount(), use an unsigned int variable to eliminate

'comparison between signed and unsigned' compiler warning.
This commit is contained in:
Craig Rodrigues 2005-10-07 02:22:04 +00:00
parent e24dc56a22
commit aedf10aca9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=151043

View File

@ -499,7 +499,8 @@ mountfs(const char *vfstype, const char *spec, const char *name, int flags,
void
prmount(struct statfs *sfp)
{
int flags, i;
int flags;
unsigned int i;
struct opt *o;
struct passwd *pw;