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/transport | |
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/transport')
-rw-r--r-- | test/core/transport/http/test_http_transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/transport/http/test_http_transport.c b/test/core/transport/http/test_http_transport.c index bee1068..0416da8 100644 --- a/test/core/transport/http/test_http_transport.c +++ b/test/core/transport/http/test_http_transport.c @@ -182,7 +182,7 @@ test_http_client( printf("Status code :%d\n", status); body_bytes_len = axis2_http_simple_response_get_body_bytes(response, env, &body_bytes); - printf("body :%s\n", body_bytes); + printf("body :%s\n%d", body_bytes , body_bytes_len); axis2_http_client_free(client, env); axis2_http_simple_request_free(request, env); |