From 776ecd42acae4188b3ce4982e10e9a6eaf009d0a Mon Sep 17 00:00:00 2001 From: Wenzhuo Lu Date: Sat, 29 Jul 2017 02:55:58 +0800 Subject: [PATCH] app/testpmd: fix usage message There're '\n's missing, so the error prompt looks bad. Fixes: 3af72783d1fd ("app/testpmd: configure event display") Fixes: 7ee3e9446290 ("app/testpmd: add --flow-isolate-all option") CC: stable@dpdk.org Signed-off-by: Wenzhuo Lu --- app/test-pmd/parameters.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/test-pmd/parameters.c b/app/test-pmd/parameters.c index 354a94cb63..2f7f70fd64 100644 --- a/app/test-pmd/parameters.c +++ b/app/test-pmd/parameters.c @@ -211,11 +211,11 @@ usage(char* progname) printf(" --bitrate-stats=N: set the logical core N to perform " "bit-rate calculation.\n"); printf(" --print-event : " - "enable print of designated event or all of them."); + "enable print of designated event or all of them.\n"); printf(" --mask-event : " - "disable print of designated event or all of them."); + "disable print of designated event or all of them.\n"); printf(" --flow-isolate-all: " - "requests flow API isolated mode on all ports at initialization time."); + "requests flow API isolated mode on all ports at initialization time.\n"); } #ifdef RTE_LIBRTE_CMDLINE -- 2.20.1