diff tests.c @ 592:4fd6ee473d1b

Fix tests.c after the addition of the width argument to th_args_help().
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 13 Jan 2020 11:40:42 +0200
parents 98812eb78d8e
children 4ea7b0e9dcba
line wrap: on
line diff
--- 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);
 }