fix some compiler warnings, and fragile code, in the test output
diff --git a/xmltest.cpp b/xmltest.cpp
index eceb860..8e5e01f 100644
--- a/xmltest.cpp
+++ b/xmltest.cpp
@@ -49,7 +49,7 @@
 	if ( !echo )

 		printf (" %s\n", testString);

 	else

-		printf (" %s [%d][%d]\n", testString, expected, found);

+		printf (" %s [%d][%d]\n", testString, static_cast<int>(expected), static_cast<int>(found) );

 

 	if ( pass )

 		++gPass;