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/core/description/test_description.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'test/core/description') diff --git a/test/core/description/test_description.c b/test/core/description/test_description.c index f3ce7d3..53c0c34 100644 --- a/test/core/description/test_description.c +++ b/test/core/description/test_description.c @@ -122,18 +122,17 @@ axis2_test_svc_get_op(axutil_env_t *env struct axutil_qname *qname = NULL; struct axutil_hash_t *ops = NULL; struct axis2_op *op = NULL; - axis2_status_t status = AXIS2_SUCCESS; qname = axutil_qname_create(env, "op1", NULL, NULL); op = axis2_op_create_with_qname(env, qname); qname = axutil_qname_create(env, "svc1", NULL, NULL); svc = axis2_svc_create_with_qname(env, qname); - status = axis2_svc_add_op(svc, env, op); + axis2_svc_add_op(svc, env, op); qname = axutil_qname_create(env, "op2", NULL, NULL); op = axis2_op_create_with_qname(env, qname); - status = axis2_svc_add_op(svc, env, op); + axis2_svc_add_op(svc, env, op); ops = axis2_svc_get_all_ops(svc, env); CUT_ASSERT(ops != NULL); -- cgit v1.1-32-gdbae