cmdline: fix parameter type

Fix warning reported during static analysis about size_t to int cast
when passing parameters to parse_set_list().

This patch fix code formating errors that give checkpatch.pl errors
after generating patch.

Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
This commit is contained in:
Pawel Wodkowski 2015-02-25 13:41:26 +01:00 committed by Thomas Monjalon
parent 460a165075
commit 03b2f7716b

View File

@ -78,7 +78,7 @@ struct cmdline_token_ops cmdline_token_portlist_ops = {
};
static void
parse_set_list(cmdline_portlist_t * pl, int low, int high)
parse_set_list(cmdline_portlist_t *pl, size_t low, size_t high)
{
do {
pl->map |= (1 << low++);
@ -86,7 +86,7 @@ parse_set_list(cmdline_portlist_t * pl, int low, int high)
}
static int
parse_ports(cmdline_portlist_t * pl, const char * str)
parse_ports(cmdline_portlist_t *pl, const char *str)
{
size_t ps, pe;
const char *first, *last;