File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ int main(int argc, char **argv)
53
53
{
54
54
int i ;
55
55
int ofs ;
56
- unsigned MAX_APPLET_NAME_LEN = 1 ;
56
+ // unsigned MAX_APPLET_NAME_LEN = 1;
57
57
58
58
qsort (applets , NUM_APPLETS , sizeof (applets [0 ]), cmp_name );
59
59
@@ -89,8 +89,8 @@ int main(int argc, char **argv)
89
89
printf ("const char applet_names[] ALIGN1 = \"\"\n" );
90
90
for (i = 0 ; i < NUM_APPLETS ; i ++ ) {
91
91
printf ("\"%s\" \"\\0\"\n" , applets [i ].name );
92
- if (MAX_APPLET_NAME_LEN < strlen (applets [i ].name ))
93
- MAX_APPLET_NAME_LEN = strlen (applets [i ].name );
92
+ // if (MAX_APPLET_NAME_LEN < strlen(applets[i].name))
93
+ // MAX_APPLET_NAME_LEN = strlen(applets[i].name);
94
94
}
95
95
printf (";\n\n" );
96
96
@@ -130,8 +130,8 @@ int main(int argc, char **argv)
130
130
printf ("};\n" );
131
131
#endif
132
132
//printf("#endif /* SKIP_definitions */\n");
133
- printf ("\n" );
134
- printf ("#define MAX_APPLET_NAME_LEN %u\n" , MAX_APPLET_NAME_LEN );
133
+ // printf("\n");
134
+ // printf("#define MAX_APPLET_NAME_LEN %u\n", MAX_APPLET_NAME_LEN);
135
135
136
136
if (argv [2 ]) {
137
137
char line_old [80 ];
You can’t perform that action at this time.
0 commit comments