Index: libcfa/src/parseconfig.cfa
===================================================================
--- libcfa/src/parseconfig.cfa	(revision e658f5df7208487cd8c43743723e87b9d5fa80c4)
+++ libcfa/src/parseconfig.cfa	(revision 181ef736b6e74b189dbfe7676ee50dd559c58047)
@@ -4,5 +4,5 @@
 
 static bool comments( ifstream & in, string & name ) {
-	for ( ;; ) {
+	while () {
 		in | name;
 	  if ( fail( in ) ) return true;
@@ -42,7 +42,7 @@
 		open( in, configFile );							// open the configuration file for input
 
-		for ( cnt = 0 ; cnt < Parmnum; ++cnt ) {		// parameter names can appear in any order
+		for ( cnt; Parmnum ) {							// parameter names can appear in any order
 		  if ( comments( in, name ) ) break;			// eof ?
-			for ( posn = 0; posn < Parmnum && name != parms[posn].name; ++posn ); // linear search
+			for ( posn; posn < Parmnum && name != parms[posn].name; ++posn ); // linear search
 		  if ( posn == Parmnum ) break;					// configuration not found ?
 		  if ( parms[posn].used ) break;				// duplicate configuration ?
