app/test: rename acl function to lowercase
authorMaciej Gajdzica <maciejx.t.gajdzica@intel.com>
Thu, 13 Aug 2015 10:33:29 +0000 (12:33 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 7 Dec 2015 03:10:15 +0000 (04:10 +0100)
Renamed function name to comply with coding standard.

Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
app/test/test_table.c
app/test/test_table_acl.c
app/test/test_table_acl.h

index de6c27d..676dab2 100644 (file)
@@ -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
 
index fe8e545..38e3a8e 100644 (file)
@@ -745,7 +745,7 @@ fail:
 }
 
 int
-test_table_ACL(void)
+test_table_acl(void)
 {
 
 
index f57cb27..a64c3e6 100644 (file)
@@ -32,4 +32,4 @@
  */
 
 /* Test prototypes */
-int test_table_ACL(void);
+int test_table_acl(void);