]> git.droids-corp.org - dpdk.git/commitdiff
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 de6c27dc659b85df3c0875cce025524a7a91025a..676dab23dc3171a2b78c1d911d8c06f74775949f 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 fe8e5457d27afeaf9fc1d81e4d3cfe8d7fac3257..38e3a8ee6ef74af570eaa6605e012c2c05ff39e4 100644 (file)
@@ -745,7 +745,7 @@ fail:
 }
 
 int
-test_table_ACL(void)
+test_table_acl(void)
 {
 
 
index f57cb27b41455f5333a1fb959a0e4ee923a82969..a64c3e6cb039bb8396fc6d911fe9e85d03525ce5 100644 (file)
@@ -32,4 +32,4 @@
  */
 
 /* Test prototypes */
-int test_table_ACL(void);
+int test_table_acl(void);