From: Slawomir Mrozowicz Date: Thu, 21 Apr 2016 13:08:12 +0000 (+0200) Subject: examples/qos_sched: fix error message X-Git-Tag: spdx-start~6918 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=f2c41f26f82416d98ea77ec06b26c660a67feef6;p=dpdk.git examples/qos_sched: fix error message rx_port in pconf->rx_port looks like a copy-paste error. Coverity issue: 30699 Fixes: de3cfa2c9823 ("sched: initial import") Signed-off-by: Slawomir Mrozowicz Acked-by: Cristian Dumitrescu --- diff --git a/examples/qos_sched/args.c b/examples/qos_sched/args.c index fc75263c97..0173d07cd6 100644 --- a/examples/qos_sched/args.c +++ b/examples/qos_sched/args.c @@ -272,7 +272,7 @@ app_parse_flow_conf(const char *conf_str) } if (pconf->tx_port >= RTE_MAX_ETHPORTS) { RTE_LOG(ERR, APP, "pfc %u: invalid tx port %"PRIu8" index\n", - nb_pfc, pconf->rx_port); + nb_pfc, pconf->tx_port); return -1; }