[dpdk-dev] [PATCH 14/15] examples/l2fwd: use fprint instead of printf for usage print
Anoob Joseph
anoob.joseph at caviumnetworks.com
Fri Jun 8 19:09:25 CEST 2018
Following the convention of l3fwd, using fprintf instead of printf for
printing usage.
Signed-off-by: Anoob Joseph <anoob.joseph at caviumnetworks.com>
---
examples/l2fwd/main.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/examples/l2fwd/main.c b/examples/l2fwd/main.c
index 05f9d28..3b697d1 100644
--- a/examples/l2fwd/main.c
+++ b/examples/l2fwd/main.c
@@ -64,7 +64,9 @@ struct rte_mempool * l2fwd_pktmbuf_pool = NULL;
static void
l2fwd_usage(const char *prgname)
{
- printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
+ fprintf(stderr, "%s [EAL options] --"
+ " -p PORTMASK"
+ " [-q NQ]\n"
" -p PORTMASK: hexadecimal bitmask of ports to configure\n"
" -q NQ: number of queue (=ports) per lcore (default is 1)\n"
" -T PERIOD: statistics will be refreshed each PERIOD seconds (0 to disable, 10 default, 86400 maximum)\n"
--
2.7.4
More information about the dev
mailing list