You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2006/03/22 06:03:19 UTC

svn commit: r387724 - /webservices/axis2/trunk/c/modules/core/clientapi/stub.c

Author: samisa
Date: Tue Mar 21 21:03:18 2006
New Revision: 387724

URL: http://svn.apache.org/viewcvs?rev=387724&view=rev
Log:
Fixed the warning

Modified:
    webservices/axis2/trunk/c/modules/core/clientapi/stub.c

Modified: webservices/axis2/trunk/c/modules/core/clientapi/stub.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/stub.c?rev=387724&r1=387723&r2=387724&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/stub.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/stub.c Tue Mar 21 21:03:18 2006
@@ -650,7 +650,7 @@
     for(index = axis2_hash_first(stub_impl->property_map, env); index; index = 
         axis2_hash_next(env, index))
     {
-        void *key = NULL;
+        const void *key = NULL;
         void *val = NULL;
         axis2_property_t *property = NULL;