From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 43DA36A80 for ; Thu, 13 Aug 2015 12:38:13 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP; 13 Aug 2015 03:38:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,669,1432623600"; d="scan'208";a="783334929" Received: from unknown (HELO stargo) ([10.217.248.233]) by orsmga002.jf.intel.com with SMTP; 13 Aug 2015 03:38:04 -0700 Received: by stargo (sSMTP sendmail emulation); Thu, 13 Aug 2015 12:33:31 +0200 From: Maciej Gajdzica To: dev@dpdk.org Date: Thu, 13 Aug 2015 12:33:29 +0200 Message-Id: <1439462009-29201-1-git-send-email-maciejx.t.gajdzica@intel.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH 1/1] table_test: renamed test_table_ACL to lowercase X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 10:38:13 -0000 Renamed function name to comply with coding standard. Signed-off-by: Maciej Gajdzica --- app/test/test_table.c | 2 +- app/test/test_table_acl.c | 2 +- app/test/test_table_acl.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/test/test_table.c b/app/test/test_table.c index de6c27d..676dab2 100644 --- a/app/test/test_table.c +++ b/app/test/test_table.c @@ -192,7 +192,7 @@ test_table(void) #ifdef RTE_LIBRTE_ACL printf("\n\n\n\n************ACL tests************\n"); - if (test_table_ACL() < 0) + if (test_table_acl() < 0) return -1; #endif diff --git a/app/test/test_table_acl.c b/app/test/test_table_acl.c index e4e9b9c..3a64e47 100644 --- a/app/test/test_table_acl.c +++ b/app/test/test_table_acl.c @@ -579,7 +579,7 @@ fail: } int -test_table_ACL(void) +test_table_acl(void) { diff --git a/app/test/test_table_acl.h b/app/test/test_table_acl.h index f57cb27..a64c3e6 100644 --- a/app/test/test_table_acl.h +++ b/app/test/test_table_acl.h @@ -32,4 +32,4 @@ */ /* Test prototypes */ -int test_table_ACL(void); +int test_table_acl(void); -- 1.7.9.5