diff options
author | Rob Landley <rob@landley.net> | 2019-04-12 18:14:20 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-04-12 18:14:20 -0500 |
commit | 63a0e7afff271ac1b1df3309bbf35f52e4771419 (patch) | |
tree | 32aed898cf12920fa80654c8f74aa9444a62c862 /lib | |
parent | e478b177ab79aab7b5dfa52e5a0853e144a62327 (diff) | |
download | toybox-63a0e7afff271ac1b1df3309bbf35f52e4771419.tar.gz |
Make help text spacing consistent.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,6 +30,6 @@ void show_help(FILE *out) i = toy_find(++s)-toy_list; } - fprintf(out, "%s", s); + fprintf(out, "%s\n", s); } } |