Check-in [e59a1c5a65]

Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

SHA1 Hash:e59a1c5a6526519e449806db0a1b8a6ad81ae4db
Date: 2009-06-15 20:11:51
User: stephan
Comment:minor C99 incompatibility fix for tcc.

Tags And Properties
Changes
[hide diffs]

Changes to WHEFSApp.c

@@ -612,11 +612,12 @@
 	}
         ArgSpec * arr[2] = {0,0};
         arr[0] = &WHEFSApp_SharedArgs[0];
         arr[1] = argspec;
         bool gotSpec = false;
-        for( int i = 0; i <= 2; ++i )
+        int i = 0;
+        for( i = 0; i <= 2; ++i )
 	{
             ArgSpec * as = arr[i];
 	    for( ; as && as->name; ++as )
 	    {
 		gotSpec = (0 == strcmp( as->name, garg->key ));