git » fp-git.git » commit 121437b

removed debug information

author ecalot
2006-01-18 16:09:47 UTC
committer ecalot
2006-01-18 16:09:47 UTC
parent 1f72274be478924bbfc3ff5c6b1f44d2664a1657

removed debug information

PR/src/lib/xml/tree.c +0 -2

diff --git a/PR/src/lib/xml/tree.c b/PR/src/lib/xml/tree.c
index 18bf9a7..5a14dd1 100644
--- a/PR/src/lib/xml/tree.c
+++ b/PR/src/lib/xml/tree.c
@@ -138,7 +138,6 @@ void tree_TagCommonFactor(tTag* parent) {
 		tList valueList;
 		long  offset;
 	} attrInfo[attributeCount];
-printf("aaaaaaaaaaaa\n");
 	if (!parent->child) return; /* avoid a full cycle for foils */
 
 	tree_bindAttr(palette,0);
@@ -554,7 +553,6 @@ void treeDeleteFile(const char* file, tTag* tree) {
 #define tree_TotalInheritance(a) if (parent->a&&child->a&&equalsIgnoreCase(parent->a,child->a)) {freeAllocation(child->a);child->a=NULL;}
 
 void tree_rec_fix(tTag* parent,tTag* child) {
-printf("aaaaaaaaaaaaa\n");
 	if (child->next) tree_rec_fix(parent,child->next);
 	if (child->child) tree_rec_fix(child,child->child);