remove some signed/unsigned and one const/!const warning

This commit is contained in:
Luigi Rizzo 2009-03-05 08:01:58 +00:00
parent 3e9771d290
commit d7a32e24af
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189395

View File

@ -319,7 +319,7 @@ StrToAddrAndPortRange (const char* str, struct in_addr* addr, char* proto,
*/
static int
setup_redir_addr(char *spool_buf, int len,
setup_redir_addr(char *spool_buf, unsigned int len,
int *_ac, char ***_av)
{
char **av, *sep; /* Token separator. */
@ -384,7 +384,7 @@ setup_redir_addr(char *spool_buf, int len,
}
static int
setup_redir_port(char *spool_buf, int len,
setup_redir_port(char *spool_buf, unsigned int len,
int *_ac, char ***_av)
{
char **av, *sep, *protoName;
@ -575,7 +575,7 @@ setup_redir_port(char *spool_buf, int len,
}
static int
setup_redir_proto(char *spool_buf, int len,
setup_redir_proto(char *spool_buf, unsigned int len,
int *_ac, char ***_av)
{
char **av;
@ -858,8 +858,8 @@ ipfw_config_nat(int ac, char **av)
if (!co.do_quiet) {
/* After every modification, we show the resultant rule. */
int _ac = 3;
char *_av[] = {"show", "config", id};
ipfw_show_nat(_ac, _av);
const char *_av[] = {"show", "config", id};
ipfw_show_nat(_ac, (char **)(void *)_av);
}
}