You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2005/12/29 04:46:00 UTC

svn commit: r359701 - in /webservices/axis2/trunk/c: include/axis2_soap_fault_sub_code.h include/axis2_soap_fault_value.h modules/wsdl/src/wsdl_component.c modules/xml/soap/src/soap_body.c

Author: samisa
Date: Wed Dec 28 19:45:51 2005
New Revision: 359701

URL: http://svn.apache.org/viewcvs?rev=359701&view=rev
Log:
Eliminated warnings

Modified:
    webservices/axis2/trunk/c/include/axis2_soap_fault_sub_code.h
    webservices/axis2/trunk/c/include/axis2_soap_fault_value.h
    webservices/axis2/trunk/c/modules/wsdl/src/wsdl_component.c
    webservices/axis2/trunk/c/modules/xml/soap/src/soap_body.c

Modified: webservices/axis2/trunk/c/include/axis2_soap_fault_sub_code.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_soap_fault_sub_code.h?rev=359701&r1=359700&r2=359701&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_soap_fault_sub_code.h (original)
+++ webservices/axis2/trunk/c/include/axis2_soap_fault_sub_code.h Wed Dec 28 19:45:51 2005
@@ -157,4 +157,6 @@
 }
 #endif
 
-#endif /* AXIS2_SOAP_FAULT_SUB_CODE_H */
\ No newline at end of file
+#endif /* AXIS2_SOAP_FAULT_SUB_CODE_H */
+
+

Modified: webservices/axis2/trunk/c/include/axis2_soap_fault_value.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_soap_fault_value.h?rev=359701&r1=359700&r2=359701&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_soap_fault_value.h (original)
+++ webservices/axis2/trunk/c/include/axis2_soap_fault_value.h Wed Dec 28 19:45:51 2005
@@ -127,4 +127,5 @@
 }
 #endif 
  
- #endif /* AXIS2_SOAP_FAULT_VALUE_H */
\ No newline at end of file
+#endif /* AXIS2_SOAP_FAULT_VALUE_H */
+

Modified: webservices/axis2/trunk/c/modules/wsdl/src/wsdl_component.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/wsdl/src/wsdl_component.c?rev=359701&r1=359700&r2=359701&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/wsdl/src/wsdl_component.c (original)
+++ webservices/axis2/trunk/c/modules/wsdl/src/wsdl_component.c Wed Dec 28 19:45:51 2005
@@ -151,7 +151,7 @@
     {
         axis2_hash_index_t *hi = NULL;
         void *val = NULL;
-        void *key = NULL;
+        const void *key = NULL;
         for (hi = axis2_hash_first (component_impl->component_properties, env); hi;
                  hi = axis2_hash_next ( env, hi))
         {
@@ -238,7 +238,7 @@
     {
         axis2_hash_index_t *hi = NULL;
         void *val = NULL;
-        void *key = NULL;
+        const void *key = NULL;
         for (hi = axis2_hash_first (component_impl->component_properties, env); hi;
                  hi = axis2_hash_next ( env, hi))
         {

Modified: webservices/axis2/trunk/c/modules/xml/soap/src/soap_body.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/src/soap_body.c?rev=359701&r1=359700&r2=359701&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/src/soap_body.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/src/soap_body.c Wed Dec 28 19:45:51 2005
@@ -88,7 +88,7 @@
     /*get parent node from SOAP envelope */
     if (envelope)
     {
-        parent = AXIS2_SOAP_ENVELOPE_GET_BASE_NODE(envelope, env);
+        parent = AXIS2_SOAP_ENVELOPE_GET_BASE(envelope, env);
     }
     
     ele = axis2_om_element_create(env, parent, AXIS2_SOAP_BODY_LOCAL_NAME, ns, &(body_impl->base));