From fcebbe16c9a7abd0d516b290e3ed5e4a757f9b73 Mon Sep 17 00:00:00 2001 From: Harsha Sharma Date: Fri, 29 Dec 2017 12:19:39 +0530 Subject: tests: change char * pointer to constant (const char *) As the parameter for function is pointer to constant, change it to constant. This fix gcc compilation warning in libnftnl with make check. Signed-off-by: Harsha Sharma Signed-off-by: Pablo Neira Ayuso --- tests/nft-expr_immediate-test.c | 4 ++-- tests/nft-expr_lookup-test.c | 2 +- tests/nft-expr_objref-test.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/nft-expr_immediate-test.c b/tests/nft-expr_immediate-test.c index 60a1450..c25eedb 100644 --- a/tests/nft-expr_immediate-test.c +++ b/tests/nft-expr_immediate-test.c @@ -71,8 +71,8 @@ int main(int argc, char *argv[]) char buf[4096]; struct nftnl_expr_iter *iter_a, *iter_b; struct nftnl_expr *rule_a, *rule_b; - char *chain = "tests_chain01234"; - char *data = "test_data_01234"; + const char *chain = "tests_chain01234"; + const char *data = "test_data_01234"; a = nftnl_rule_alloc(); b = nftnl_rule_alloc(); diff --git a/tests/nft-expr_lookup-test.c b/tests/nft-expr_lookup-test.c index 28c1204..9e6e051 100644 --- a/tests/nft-expr_lookup-test.c +++ b/tests/nft-expr_lookup-test.c @@ -59,7 +59,7 @@ int main(int argc, char *argv[]) char buf[4096]; struct nftnl_expr_iter *iter_a, *iter_b; struct nftnl_expr *rule_a, *rule_b; - char *lookup_set = "test_set_01243"; + const char *lookup_set = "test_set_01243"; a = nftnl_rule_alloc(); b = nftnl_rule_alloc(); diff --git a/tests/nft-expr_objref-test.c b/tests/nft-expr_objref-test.c index ae4da9a..08e27ce 100644 --- a/tests/nft-expr_objref-test.c +++ b/tests/nft-expr_objref-test.c @@ -46,7 +46,7 @@ int main(int argc, char *argv[]) char buf[4096]; struct nftnl_expr_iter *iter_a, *iter_b; struct nftnl_expr *rule_a, *rule_b; - char *name = "test_set_01243"; + const char *name = "test_set_01243"; a = nftnl_rule_alloc(); b = nftnl_rule_alloc(); -- cgit v1.2.3