From 10b5482cd03e243dda477407212ea8ccccd5f849 Mon Sep 17 00:00:00 2001 From: nandika Date: Thu, 27 Dec 2012 17:00:03 +0000 Subject: Warnings fixed with -Werror git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1426255 13f79535-47bb-0310-9956-ffa450edef68 --- test/cutest/include/cut_http_server.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/cutest') 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; } -- cgit v1.1-32-gdbae