test: Command line options tweak

This commit is contained in:
Kim Woelders 2022-02-28 17:54:49 +01:00
parent e415e0364c
commit f334da7959
1 changed files with 3 additions and 2 deletions

View File

@ -16,11 +16,12 @@ main(int argc, char **argv)
s = argv[0];
if (*s++ != '-')
break;
switch (*s)
again:
switch (*s++)
{
case 'd':
debug++;
break;
goto again;
}
}