From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matan Azrad Subject: [PATCH 1/2] net/tap: fix indentation in flow file Date: Tue, 3 Oct 2017 14:55:55 +0000 Message-ID: <1507042556-9839-1-git-send-email-matan@mellanox.com> Mime-Version: 1.0 Content-Type: text/plain Cc: dev@dpdk.org To: Pascal Mazon Return-path: Received: from EUR03-VE1-obe.outbound.protection.outlook.com (mail-eopbgr50063.outbound.protection.outlook.com [40.107.5.63]) by dpdk.org (Postfix) with ESMTP id 010A01B3A9 for ; Tue, 3 Oct 2017 16:56:16 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Missed 4 spaces were added after break if line. Fixes: 7a6811d78ed6 ("net/tap: fix flow and port commands") Signed-off-by: Matan Azrad --- drivers/net/tap/tap_flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/tap/tap_flow.c b/drivers/net/tap/tap_flow.c index eefa868..aa33960 100644 --- a/drivers/net/tap/tap_flow.c +++ b/drivers/net/tap/tap_flow.c @@ -1093,7 +1093,7 @@ struct tap_flow_items { goto exit_action_not_supported; action = 1; if (!queue || - (queue->index > pmd->dev->data->nb_rx_queues - 1)) + (queue->index > pmd->dev->data->nb_rx_queues - 1)) goto exit_action_not_supported; if (flow) err = add_action_skbedit(flow, queue->index); -- 1.8.3.1