From a653a010cef06cbf4c3537663255bc35d6d1ae62 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Mon, 17 Oct 2016 13:19:20 -0700 Subject: [PATCH] ext: tlib: fix mistake in cmdline handling introduced in latest change --- ext/tlib/testsuite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/tlib/testsuite.c b/ext/tlib/testsuite.c index fc764ece..9be2b5cf 100644 --- a/ext/tlib/testsuite.c +++ b/ext/tlib/testsuite.c @@ -131,7 +131,7 @@ void tlib_run_tests(int argc, char *argv[]) no_abort = 1; else if (0 == strcmp("--repeat-forever", a)) repeat = ULONG_MAX; - else + else if ('-' == a[1]) { fprintf(stderr, "tlib_run_tests: unknown option %s\n", a); exit(2);