|
@@ -13,6 +13,7 @@ int main(int argc, char **argv) {
|
13
|
13
|
int printtree = 0, clean = 1, argidx = 2;
|
14
|
14
|
FILE *prgstream = stdin, *compstream = NULL;
|
15
|
15
|
int result = 0, compile = 0, compiled = 0, html = 0;
|
|
16
|
+ unsigned i;
|
16
|
17
|
|
17
|
18
|
state.features = 0;
|
18
|
19
|
|
|
@@ -71,10 +72,10 @@ int main(int argc, char **argv) {
|
71
|
72
|
printf("Sorry, no help in this version (-DNO_HELP)!\n");
|
72
|
73
|
#endif
|
73
|
74
|
printf("\nThis Sol is configured to use the following initialization files (it is never an\nerror if these files cannot be read, but errors propagate normally):\n");
|
74
|
|
- for(unsigned i = 0; i < sizeof(sol_AbsInitPaths) / sizeof(sol_AbsInitPaths[0]); i++)
|
|
75
|
+ for(i = 0; i < sizeof(sol_AbsInitPaths) / sizeof(sol_AbsInitPaths[0]); i++)
|
75
|
76
|
if(sol_AbsInitPaths[i])
|
76
|
77
|
printf("- %s\n", sol_AbsInitPaths[i]);
|
77
|
|
- for(unsigned i = 0; i < sizeof(sol_HomeInitPaths) / sizeof(sol_HomeInitPaths[0]); i++)
|
|
78
|
+ for(i = 0; i < sizeof(sol_HomeInitPaths) / sizeof(sol_HomeInitPaths[0]); i++)
|
78
|
79
|
if(sol_HomeInitPaths[i])
|
79
|
80
|
printf("- $HOME%s\n", sol_HomeInitPaths[i]);
|
80
|
81
|
return 0;
|