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/28 05:48:38 UTC

svn commit: r292115 - /webservices/axis2/trunk/c/modules/xml/om/src/axis2c_node.c

Author: samisa
Date: Tue Sep 27 20:48:34 2005
New Revision: 292115

URL: http://svn.apache.org/viewcvs?rev=292115&view=rev
Log:
Fixed compilation problems

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

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=292115&r1=292114&r2=292115&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 20:48:34 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;
 }
@@ -50,8 +50,7 @@
     if (parent->first_child == NULL)
     {
 	parent->first_child = child;
-    }
-    else
+    } else
     {
 	parent->last_child->next_sibling = child;
 	child->prev_sibling = parent->last_child;
@@ -81,8 +80,7 @@
     if ((axis2c_node_to_detach->prev_sibling) == NULL)
     {
 	parent->first_child = axis2c_node_to_detach->next_sibling;
-    }
-    else
+    } else
     {
 	axis2c_node_to_detach->prev_sibling->next_sibling =
 	    axis2c_node_to_detach->next_sibling;
@@ -103,4 +101,3 @@
 {
 
 }
-