[geos-commits] r2692 - trunk/tests/xmltester/tinyxml

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Oct 23 05:33:58 EDT 2009


Author: strk
Date: 2009-10-23 05:33:56 -0400 (Fri, 23 Oct 2009)
New Revision: 2692

Modified:
   trunk/tests/xmltester/tinyxml/tinyxmlparser.cpp
Log:
add some parens to hush gcc warning

Modified: trunk/tests/xmltester/tinyxml/tinyxmlparser.cpp
===================================================================
--- trunk/tests/xmltester/tinyxml/tinyxmlparser.cpp	2009-10-23 09:00:08 UTC (rev 2691)
+++ trunk/tests/xmltester/tinyxml/tinyxmlparser.cpp	2009-10-23 09:33:56 UTC (rev 2692)
@@ -354,7 +354,7 @@
 	}
 	else
 	{
-		while ( *p && IsWhiteSpace( *p ) || *p == '\n' || *p =='\r' )
+		while ( *p && (IsWhiteSpace( *p ) || *p == '\n' || *p =='\r') )
 			++p;
 	}
 



More information about the geos-commits mailing list