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