# HG changeset patch # User Matti Hamalainen # Date 1578908442 -7200 # Node ID 4fd6ee473d1b4841314e8be7e1fafa71b77eeba5 # Parent 1e9fa00cc63ffc47aa0b57d11a4a6484c85e98fd Fix tests.c after the addition of the width argument to th_args_help(). diff -r 1e9fa00cc63f -r 4fd6ee473d1b tests.c --- a/tests.c Sun Jan 12 20:51:26 2020 +0200 +++ b/tests.c Mon Jan 13 11:40:42 2020 +0200 @@ -87,7 +87,7 @@ void arg_show_help(void) { th_print_banner(stdout, th_prog_name, "[options]"); - th_args_help(stdout, arg_opts, arg_nopts, 0); + th_args_help(stdout, arg_opts, arg_nopts, 0, 80 - 2); }