From dd78e2b3734196578f85d1cc15ccf86a38dba1e5 Mon Sep 17 00:00:00 2001 From: nadiramra Date: Wed, 2 Jun 2010 03:00:12 +0000 Subject: AXIS2C-1426 axutil_hash_set() usage require cast (warning on AIX) git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@950347 13f79535-47bb-0310-9956-ffa450edef68 --- axiom/src/xpath/xpath.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'axiom') diff --git a/axiom/src/xpath/xpath.c b/axiom/src/xpath/xpath.c index 38f422c..90f44ad 100755 --- a/axiom/src/xpath/xpath.c +++ b/axiom/src/xpath/xpath.c @@ -136,7 +136,7 @@ axiom_xpath_register_function( context->functions = axutil_hash_make(context->env); } - axutil_hash_set(context->functions, name, AXIS2_HASH_KEY_STRING, func); + axutil_hash_set(context->functions, name, AXIS2_HASH_KEY_STRING, (const void *)func); } } @@ -149,7 +149,7 @@ axiom_xpath_get_function( if(context->functions) { - func = axutil_hash_get(context->functions, name, AXIS2_HASH_KEY_STRING); + func = (axiom_xpath_function_t)axutil_hash_get(context->functions, name, AXIS2_HASH_KEY_STRING); } return func; @@ -171,8 +171,7 @@ axiom_xpath_register_namespace( if (prefix) { - axutil_hash_set( - context->namespaces, prefix, AXIS2_HASH_KEY_STRING, ns); + axutil_hash_set(context->namespaces, prefix, AXIS2_HASH_KEY_STRING, (const void *)ns); } } @@ -185,7 +184,7 @@ axiom_xpath_get_namespace( if (context->namespaces) { - ns = axutil_hash_get(context->namespaces, prefix, AXIS2_HASH_KEY_STRING); + ns = (axiom_namespace_t *)axutil_hash_get(context->namespaces, prefix, AXIS2_HASH_KEY_STRING); } return ns; -- cgit v1.1-32-gdbae