changeset 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 1e9fa00cc63f
children 1a33088e7fa9
files tests.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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);
 }