diff options
author | Rob Landley <rob@landley.net> | 2014-04-07 12:53:24 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-04-07 12:53:24 -0500 |
commit | e6314da6fe9b251448e6a4a2cab12e256688ab5d (patch) | |
tree | 571f4f6ee573668882d34b55548ff501b213b349 | |
parent | 6f9d481062e171fb0bd1aa5cdcf043c0e4f9d733 (diff) | |
download | toybox-e6314da6fe9b251448e6a4a2cab12e256688ab5d.tar.gz |
generated/help.h is a lot easier to read with an extra newline between each help entry.
-rw-r--r-- | scripts/config2help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config2help.c b/scripts/config2help.c index 41b04c38..1c2bcdcb 100644 --- a/scripts/config2help.c +++ b/scripts/config2help.c @@ -387,7 +387,7 @@ int main(int argc, char *argv[]) dd = dd->next; if (dd == sym->help) break; } - printf("\"\n"); + printf("\"\n\n"); } sym = sym->next; } |