comparison th_args.c @ 566:11f56a652cb0

Adjust indentation output of commandline help printing.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 07 Jan 2020 20:09:23 +0200
parents a0fdf52ab186
children 390c66af09cf
comparison
equal deleted inserted replaced
565:a0fdf52ab186 566:11f56a652cb0
216 (opt->flags & OPT_ARGREQ) ? "=ARG" : ""); 216 (opt->flags & OPT_ARGREQ) ? "=ARG" : "");
217 } 217 }
218 else 218 else
219 tmpStr[0] = 0; 219 tmpStr[0] = 0;
220 220
221 fprintf(fh, "%-20s", tmpStr); 221 fprintf(fh, "%-18s", tmpStr);
222 222
223 th_print_wrap(fh, opt->desc, 26, 26, th_term_width() - 2); 223 th_print_wrap(fh, opt->desc, 24, 24, th_term_width() - 2);
224 } 224 }
225 } 225 }