From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: [PATCH iproute2 20/22] tc/action: make variables static Date: Thu, 15 Nov 2018 14:36:38 -0800 Message-ID: <20181115223640.411-21-stephen@networkplumber.org> References: <20181115223640.411-1-stephen@networkplumber.org> Cc: Stephen Hemminger To: netdev@vger.kernel.org Return-path: Received: from mail-pf1-f193.google.com ([209.85.210.193]:46289 "EHLO mail-pf1-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389074AbeKPIqq (ORCPT ); Fri, 16 Nov 2018 03:46:46 -0500 Received: by mail-pf1-f193.google.com with SMTP id s9-v6so10359690pfm.13 for ; Thu, 15 Nov 2018 14:37:02 -0800 (PST) In-Reply-To: <20181115223640.411-1-stephen@networkplumber.org> Sender: netdev-owner@vger.kernel.org List-ID: Signed-off-by: Stephen Hemminger --- tc/m_action.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tc/m_action.c b/tc/m_action.c index e90867fc6c25..d5fd5affe703 100644 --- a/tc/m_action.c +++ b/tc/m_action.c @@ -30,9 +30,9 @@ static struct action_util *action_list; #ifdef CONFIG_GACT -int gact_ld; /* f*ckin backward compatibility */ +static int gact_ld; /* f*ckin backward compatibility */ #endif -int tab_flush; +static int tab_flush; static void act_usage(void) { -- 2.17.1