aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.help1
-rw-r--r--applets/applet_tables.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.help b/Makefile.help
index 513c10c4e..f95740365 100644
--- a/Makefile.help
+++ b/Makefile.help
@@ -16,7 +16,6 @@ help:
16 @echo 'Configuration:' 16 @echo 'Configuration:'
17 @echo ' allnoconfig - disable all symbols in .config' 17 @echo ' allnoconfig - disable all symbols in .config'
18 @echo ' allyesconfig - enable all symbols in .config (see defconfig)' 18 @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
19 @echo ' allbareconfig - enable all applets without any sub-features'
20 @echo ' config - text based configurator (of last resort)' 19 @echo ' config - text based configurator (of last resort)'
21 @echo ' defconfig - set .config to largest generic configuration' 20 @echo ' defconfig - set .config to largest generic configuration'
22 @echo ' menuconfig - interactive curses-based configurator' 21 @echo ' menuconfig - interactive curses-based configurator'
diff --git a/applets/applet_tables.c b/applets/applet_tables.c
index c16df06a7..3945f7c51 100644
--- a/applets/applet_tables.c
+++ b/applets/applet_tables.c
@@ -71,7 +71,7 @@ int main(int argc, char **argv)
71 71
72 puts("/* This is a generated file, don't edit */"); 72 puts("/* This is a generated file, don't edit */");
73 73
74 puts("const char applet_names[] ALIGN1 ="); 74 puts("const char applet_names[] ALIGN1 = \"\" \n");
75 for (i = 0; i < NUM_APPLETS; i++) { 75 for (i = 0; i < NUM_APPLETS; i++) {
76 printf("\"%s\" \"\\0\"\n", applets[i].name); 76 printf("\"%s\" \"\\0\"\n", applets[i].name);
77 } 77 }