diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2006-07-13 14:02:58 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2006-07-13 14:02:58 -0400 |
commit | b2668e944d1819f2b8f9973f1f42b1ca36bb193d (patch) | |
tree | ff094264acf2c43da8dc0401eb33f5a2e4404cd9 /test/cairo-test.c | |
parent | 510d23acef9fc75eb968795191091cbc1d33bc09 (diff) |
Use cairo_bool_t.
Diffstat (limited to 'test/cairo-test.c')
-rw-r--r-- | test/cairo-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cairo-test.c b/test/cairo-test.c index c6bf79bc..c3393115 100644 --- a/test/cairo-test.c +++ b/test/cairo-test.c @@ -1637,7 +1637,7 @@ cairo_test_expecting (cairo_test_t *test, /* we use volatile here to make sure values are not clobbered * by longjmp */ volatile int i, j, num_targets; - volatile int limited_targets = 0, no_fail_on_stdout = 0; + volatile cairo_bool_t limited_targets = 0, no_fail_on_stdout = 0; const char *tname; void (*old_segfault_handler)(int); volatile cairo_test_status_t status, ret; |