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

'comparison between signed and unsigned' compiler warning.
This commit is contained in:
rodrigc 2005-10-07 02:22:04 +00:00
parent 8ed272b3a6
commit 0b8c3193e1

View File

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