From patchwork Fri Jul 28 18:55:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wenzhuo Lu X-Patchwork-Id: 27260 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 791FA996A; Fri, 28 Jul 2017 20:55:14 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 1D9629963; Fri, 28 Jul 2017 20:55:12 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga105.jf.intel.com with ESMTP; 28 Jul 2017 11:55:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,427,1496127600"; d="scan'208";a="883933087" Received: from dpdk26.sh.intel.com ([10.67.110.152]) by FMSMGA003.fm.intel.com with ESMTP; 28 Jul 2017 11:55:10 -0700 From: Wenzhuo Lu To: dev@dpdk.org Cc: jingjing.wu@intel.com, Wenzhuo Lu , stable@dpdk.org Date: Sat, 29 Jul 2017 02:55:58 +0800 Message-Id: <1501268158-119313-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dpdk-dev] [PATCH] app/testpmd: fix error prompt X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 354a94c..2f7f70f 100644 --- a/app/test-pmd/parameters.c +++ b/app/test-pmd/parameters.c @@ -211,11 +211,11 @@ 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