fix line number tracker. error msg wip
diff --git a/xmltest.cpp b/xmltest.cpp
index 96cbf64..01b5011 100644
--- a/xmltest.cpp
+++ b/xmltest.cpp
@@ -499,9 +499,13 @@
int value2 = doc->FirstChildElement()->LastChildElement()->IntAttribute( "attrib", replacementIntValue );
XMLError result = doc->FirstChildElement()->LastChildElement()->QueryIntAttribute( "attrib", &value1 );
XMLTest( "Programmatic DOM", XML_NO_ATTRIBUTE, result );
+ doc->PrintError();
XMLTest( "Programmatic DOM", defaultIntValue, value1 );
XMLTest( "Programmatic DOM", replacementIntValue, value2 );
+
+ exit(0);
+
doc->Print();
{