ext: tlib: fix mistake in cmdline handling introduced in latest change

This commit is contained in:
Bill Zissimopoulos 2016-10-17 13:19:20 -07:00
parent 31eedbddb3
commit a653a010ce

View File

@ -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);