# HG changeset patch # User Matti Hamalainen # Date 1578420563 -7200 # Node ID 11f56a652cb09b2464439c7467aece5c89570ffc # Parent a0fdf52ab1862417e98d0cee67256d4a01915c60 Adjust indentation output of commandline help printing. diff -r a0fdf52ab186 -r 11f56a652cb0 th_args.c --- a/th_args.c Tue Jan 07 20:06:20 2020 +0200 +++ b/th_args.c Tue Jan 07 20:09:23 2020 +0200 @@ -218,8 +218,8 @@ else tmpStr[0] = 0; - fprintf(fh, "%-20s", tmpStr); + fprintf(fh, "%-18s", tmpStr); - th_print_wrap(fh, opt->desc, 26, 26, th_term_width() - 2); + th_print_wrap(fh, opt->desc, 24, 24, th_term_width() - 2); } }