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 na...@apache.org on 2006/03/17 11:34:32 UTC

svn commit: r386602 - in /webservices/axis2/trunk/c/modules/xml: om/om_element.c om/om_stax_builder.c soap/soap_message.c

Author: nandika
Date: Fri Mar 17 02:34:30 2006
New Revision: 386602

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

Modified:
    webservices/axis2/trunk/c/modules/xml/om/om_element.c
    webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_message.c

Modified: webservices/axis2/trunk/c/modules/xml/om/om_element.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_element.c?rev=386602&r1=386601&r2=386602&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_element.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_element.c Fri Mar 17 02:34:30 2006
@@ -693,7 +693,7 @@
     axis2_char_t *name = NULL;
     axis2_om_attribute_t *attr = NULL;
     AXIS2_ENV_CHECK(env, NULL);
-    AXIS2_PARAM_CHECK((*env)->error, qname, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, qname, NULL);
     
     element_impl = AXIS2_INTF_TO_IMPL(om_element);
     name = AXIS2_QNAME_TO_STRING(qname, env);

Modified: webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c?rev=386602&r1=386601&r2=386602&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_stax_builder.c Fri Mar 17 02:34:30 2006
@@ -445,7 +445,7 @@
     axis2_char_t *temp_localname = NULL;
     
     AXIS2_ENV_CHECK(env, NULL);
-    AXIS2_PARAM_CHECK((*env)->error, om_stax_builder, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK((*env)->error, om_stax_builder, NULL);
     
     builder_impl = AXIS2_INTF_TO_IMPL(om_stax_builder);
     

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_message.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_message.c?rev=386602&r1=386601&r2=386602&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_message.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_message.c Fri Mar 17 02:34:30 2006
@@ -17,6 +17,7 @@
  #include <axis2_soap_message.h>
  #include <axis2_om_document.h>
  #include <axis2_om_output.h>
+ #include <_axis2_soap_envelope.h>
 
 /*************************** impl struct **************************************/