From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jasvinder Singh Subject: [PATCH] examples/ip_pipeline: fix gcc v6.2.1 build error Date: Mon, 17 Oct 2016 11:51:16 +0100 Message-ID: <1476701476-61706-1-git-send-email-jasvinder.singh@intel.com> Cc: cristian.dumitrescu@intel.com To: dev@dpdk.org Return-path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 19ED42B97 for ; Mon, 17 Oct 2016 12:43:33 +0200 (CEST) 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" This patch fixes the misleading indentation error on compiling ip_pipeline app with gcc v6.2.1. Fixes: 3f2c9f3bb6c6 ("examples/ip_pipeline: add TAP port") Signed-off-by: Jasvinder Singh --- examples/ip_pipeline/app.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/ip_pipeline/app.h b/examples/ip_pipeline/app.h index 564996e..f8b84e0 100644 --- a/examples/ip_pipeline/app.h +++ b/examples/ip_pipeline/app.h @@ -1152,7 +1152,7 @@ app_tap_get_writer(struct app_params *app, struct app_pktq_tap_params *tap, uint32_t *pktq_out_id) { - struct app_pipeline_params *writer; + struct app_pipeline_params *writer = NULL; uint32_t pos = tap - app->tap_params; uint32_t n_pipelines = RTE_MIN(app->n_pipelines, RTE_DIM(app->pipeline_params)); @@ -1168,10 +1168,11 @@ app_tap_get_writer(struct app_params *app, struct app_pktq_out_params *pktq = &p->pktq_out[j]; if ((pktq->type == APP_PKTQ_OUT_TAP) && - (pktq->id == pos)) + (pktq->id == pos)) { n_writers++; writer = p; id = j; + } } } -- 2.5.5