app/testpmd: fix default flow control values

This variable has undefined values in some cases.

Fixes: 422a20a4e6 ("app/testpmd: fix uninitialized flow control variables")

Signed-off-by: Ding Zhi <zhi.ding@6wind.com>
Signed-off-by: David Marchand <david.marchand@6wind.com>
[Thomas: split lines to conform with guidelines]
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
Ding Zhi 2015-06-01 14:11:09 +02:00 committed by Thomas Monjalon
parent db935d0171
commit c76ee0d0ee

View File

@ -4743,7 +4743,8 @@ cmd_link_flow_ctrl_set_parsed(void *parsed_result,
struct cmd_link_flow_ctrl_set_result *res = parsed_result;
cmdline_parse_inst_t *cmd = data;
struct rte_eth_fc_conf fc_conf;
int rx_fc_en, tx_fc_en = 0;
int rx_fc_en = 0;
int tx_fc_en = 0;
int ret;
/*