summaryrefslogtreecommitdiff
path: root/test/cairo-test-trace.c
diff options
context:
space:
mode:
authorAndrea Canciani <ranma42@gmail.com>2011-10-02 16:15:59 -0700
committerAndrea Canciani <ranma42@gmail.com>2011-11-12 20:49:08 +0100
commit6a0ba303035997fcd5f28bcd32297f9bc21bd45a (patch)
treead6dfc64e0bf363d3201c286554d983b1cad342d /test/cairo-test-trace.c
parent0e18cc6d27e59e42c6632b21c5502174c8a9eb08 (diff)
downloadcairo-6a0ba303035997fcd5f28bcd32297f9bc21bd45a.tar.gz
Sort option flags
Keep the option flags in alphabetical order. This makes it easier to check for collisions or missing handlers. Avoids an internal error when passing flags -c, -r or -v to cairo-analyse-trace.
Diffstat (limited to 'test/cairo-test-trace.c')
-rw-r--r--test/cairo-test-trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cairo-test-trace.c b/test/cairo-test-trace.c
index fb1bd4225..89ef6516b 100644
--- a/test/cairo-test-trace.c
+++ b/test/cairo-test-trace.c
@@ -1554,7 +1554,7 @@ parse_options (test_trace_t *test, int argc, char *argv[])
test->num_exclude_names = 0;
while (1) {
- c = _cairo_getopt (argc, argv, "x:l");
+ c = _cairo_getopt (argc, argv, "lx:");
if (c == -1)
break;