From 02ba92b02c8e0b9d80b0e938da7cde5bc53ac542 Mon Sep 17 00:00:00 2001 From: Maciej Gajdzica Date: Thu, 13 Aug 2015 12:33:29 +0200 Subject: [PATCH] app/test: rename acl function to lowercase Renamed function name to comply with coding standard. Signed-off-by: Maciej Gajdzica Acked-by: Pablo de Lara --- 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 de6c27dc65..676dab23dc 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 fe8e5457d2..38e3a8ee6e 100644 --- a/app/test/test_table_acl.c +++ b/app/test/test_table_acl.c @@ -745,7 +745,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 f57cb27b41..a64c3e6cb0 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); -- 2.20.1