From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fan Zhang Subject: [PATCH] example/ip_pipeline: fix copy-paste error Date: Fri, 11 Dec 2015 11:29:08 +0000 Message-ID: <1449833351-10011-3-git-send-email-roy.fan.zhang@intel.com> References: <1449833351-10011-1-git-send-email-roy.fan.zhang@intel.com> To: dev@dpdk.org Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 1B2FC8E7A for ; Fri, 11 Dec 2015 12:29:14 +0100 (CET) In-Reply-To: <1449833351-10011-1-git-send-email-roy.fan.zhang@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Coverity issue: 107104 Fixes: 7f64b9c004aa ("examples/ip_pipeline: rework config file syntax") Signed-off-by: Fan Zhang Acked-by: Cristian Dumitrescu --- examples/ip_pipeline/config_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ip_pipeline/config_parse.c b/examples/ip_pipeline/config_parse.c index 67e58c9..dbeb3a9 100644 --- a/examples/ip_pipeline/config_parse.c +++ b/examples/ip_pipeline/config_parse.c @@ -2398,7 +2398,7 @@ save_pipeline_params(struct app_params *app, FILE *f) } /* msgq_out */ - if (p->n_msgq_in) { + if (p->n_msgq_out) { uint32_t j; fprintf(f, "msgq_out ="); -- 2.5.0