Skip to content

Commit

Permalink
test: correct options in getopt call
Browse files Browse the repository at this point in the history
'k' was missing and 't' was present but unhandled. Options have been
reordered according to the "USAGE" ordering.
  • Loading branch information
Andrea Canciani committed Jun 17, 2010
1 parent 3cd0755 commit cb28e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cairo-test-runner.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit cb28e0b

Please sign in to comment.