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 2005/09/27 11:24:37 UTC

svn commit: r291871 - in /webservices/axis2/trunk/c: include/axis2c_node.h modules/xml/om/src/axis2c_node.c

Author: samisa
Date: Tue Sep 27 02:24:30 2005
New Revision: 291871

URL: http://svn.apache.org/viewcvs?rev=291871&view=rev
Log:
Fixed compilatin problem

Modified:
    webservices/axis2/trunk/c/include/axis2c_node.h
    webservices/axis2/trunk/c/modules/xml/om/src/axis2c_node.c

Modified: webservices/axis2/trunk/c/include/axis2c_node.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2c_node.h?rev=291871&r1=291870&r2=291871&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2c_node.h (original)
+++ webservices/axis2/trunk/c/include/axis2c_node.h Tue Sep 27 02:24:30 2005
@@ -21,11 +21,6 @@
 #include <apr_pools.h>
 #include <xmlpullparser.h>
 
-#define TRUE  1                    // to be used as boolean values
-#define FALSE 0
-
-
-
 static apr_pool_t *om_pool; // a memory pool to be used for this module
 
 

Modified: webservices/axis2/trunk/c/modules/xml/om/src/axis2c_node.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/src/axis2c_node.c?rev=291871&r1=291870&r2=291871&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/src/axis2c_node.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/src/axis2c_node.c Tue Sep 27 02:24:30 2005
@@ -30,7 +30,7 @@
     node->parent = NULL;
     node->element_type = 0;
     node->done = FALSE;
-    node->builder = NULL;
+//    node->builder = NULL;
     node->data_element = NULL;
     return node;
 }