fix warnings for parse_cmdlineargs()
Signed-off-by: Casey Bodley <cbodley@citi.umich.edu>
This commit is contained in:
parent
c1b90c225a
commit
13f661add4
1 changed files with 2 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ static void PrintUsage()
|
||||||
}
|
}
|
||||||
static bool_t parse_cmdlineargs(int argc, TCHAR *argv[], nfsd_args *out)
|
static bool_t parse_cmdlineargs(int argc, TCHAR *argv[], nfsd_args *out)
|
||||||
{
|
{
|
||||||
DWORD i;
|
int i;
|
||||||
|
|
||||||
/* set defaults. */
|
/* set defaults. */
|
||||||
out->debug_level = 2;
|
out->debug_level = 2;
|
||||||
|
|
@ -201,6 +201,7 @@ static bool_t parse_cmdlineargs(int argc, TCHAR *argv[], nfsd_args *out)
|
||||||
}
|
}
|
||||||
fprintf(stdout, "parse_cmdlineargs: debug_level %d ldap is %d\n",
|
fprintf(stdout, "parse_cmdlineargs: debug_level %d ldap is %d\n",
|
||||||
out->debug_level, out->ldap_enable);
|
out->debug_level, out->ldap_enable);
|
||||||
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef STANDALONE_NFSD
|
#ifdef STANDALONE_NFSD
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue