In prmount(), use an unsigned int variable to eliminate
'comparison between signed and unsigned' compiler warning.
This commit is contained in:
parent
8ed272b3a6
commit
0b8c3193e1
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user