summaryrefslogtreecommitdiffstats
path: root/test/cutest
diff options
context:
space:
mode:
authorGravatar nandika2012-12-27 17:00:03 +0000
committerGravatar nandika2012-12-27 17:00:03 +0000
commit10b5482cd03e243dda477407212ea8ccccd5f849 (patch)
tree0f1d03b9d776d6a4f0ca331082da25db3940c3ef /test/cutest
parent84e50d45a9f03184ab3435d761a441c083a0d820 (diff)
downloadaxis2c-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')
-rw-r--r--test/cutest/include/cut_http_server.h8
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;
}