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/cutest/include | |
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/cutest/include')
-rw-r--r-- | test/cutest/include/cut_http_server.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cutest/include/cut_http_server.h b/test/cutest/include/cut_http_server.h index e386750..9829167 100644 --- a/test/cutest/include/cut_http_server.h +++ b/test/cutest/include/cut_http_server.h @@ -86,14 +86,14 @@ void server_free( axutil_env_t * env) { - axutil_allocator_t *allocator = NULL; +/* axutil_allocator_t *allocator = NULL; */ if(server) { axis2_transport_receiver_free(server, system_env); } if(env) { - allocator = env->allocator; + /* allocator = env->allocator; */ axutil_env_free(env); } /*axutil_allocator_free(allocator); */ @@ -203,9 +203,9 @@ static int ut_start_http_server(axutil_env_t *env) static void ut_stop_http_server(axutil_env_t *env) { - axis2_status_t rv; + /*axis2_status_t rv;*/ if ( !thread_http_server ) return; - rv = axutil_thread_exit(thread_http_server, env->allocator); + /*rv = */axutil_thread_exit(thread_http_server, env->allocator); thread_http_server = NULL; } |