diff options
author | nandika | 2012-12-27 17:00:03 +0000 |
---|---|---|
committer | nandika | 2012-12-27 17:00:03 +0000 |
commit | 10b5482cd03e243dda477407212ea8ccccd5f849 (patch) | |
tree | 0f1d03b9d776d6a4f0ca331082da25db3940c3ef /test/core/clientapi | |
parent | 84e50d45a9f03184ab3435d761a441c083a0d820 (diff) | |
download | axis2c-10b5482cd03e243dda477407212ea8ccccd5f849.tar.gz axis2c-10b5482cd03e243dda477407212ea8ccccd5f849.tar.bz2 |
Warnings fixed with -Werror
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1426255 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/core/clientapi')
-rw-r--r-- | test/core/clientapi/test_clientapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/clientapi/test_clientapi.c b/test/core/clientapi/test_clientapi.c index ccd8709..04650f4 100644 --- a/test/core/clientapi/test_clientapi.c +++ b/test/core/clientapi/test_clientapi.c @@ -94,7 +94,7 @@ build_om_payload_for_echo_svc( const axis2_char_t * echo_text) { axiom_node_t *echo_om_node = NULL; - axiom_element_t *echo_om_ele = NULL; + /*axiom_element_t *echo_om_ele = NULL; */ axiom_node_t *text_om_node = NULL; axiom_element_t *text_om_ele = NULL; axiom_namespace_t *ns1 = NULL; @@ -102,7 +102,7 @@ build_om_payload_for_echo_svc( ns1 = axiom_namespace_create(env, "http://ws.apache.org/axis2/c/samples", "ns1"); - echo_om_ele = + /*echo_om_ele =*/ axiom_element_create(env, NULL, "echoString", ns1, &echo_om_node); text_om_ele = axiom_element_create(env, echo_om_node, "text", NULL, &text_om_node); |