mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-24 19:30:10 +01:00
test: correct options in getopt call
'k' was missing and 't' was present but unhandled. Options have been reordered according to the "USAGE" ordering.
This commit is contained in:
parent
3cd0755932
commit
cb28e0bfeb
1 changed files with 1 additions and 1 deletions
|
|
@ -349,7 +349,7 @@ _parse_cmdline (cairo_test_runner_t *runner, int *argc, char **argv[])
|
|||
int c;
|
||||
|
||||
while (1) {
|
||||
c = _cairo_getopt (*argc, *argv, ":aflstx");
|
||||
c = _cairo_getopt (*argc, *argv, ":afkxsl");
|
||||
if (c == -1)
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue