summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-06-15 10:58:52 +0000
committerCarl Worth <cworth@cworth.org>2005-06-15 10:58:52 +0000
commitfac3cd46b38d8ad45e0f6b1d112318cce289a8b4 (patch)
tree610b5b50cc105ddf132cce54d42cc69d1b09b1d3
parent0b122003e7b1e45d28b535a5f5577544d1666510 (diff)
(cairo_test_for_target): And add missing parenthesis.
-rw-r--r--ChangeLog1
-rw-r--r--test/cairo-test.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 071f56567..2137fbd58 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2005-06-15 Carl Worth <cworth@cworth.org>
* test/cairo-test.c: Track removal of cairo_status_string.
+ (cairo_test_for_target): And add missing parenthesis.
2005-06-15 Carl Worth <cworth@cworth.org>
diff --git a/test/cairo-test.c b/test/cairo-test.c
index b4ebd2dd6..a17cd6f8b 100644
--- a/test/cairo-test.c
+++ b/test/cairo-test.c
@@ -441,7 +441,7 @@ cairo_test_for_target (cairo_test_t *test,
if (cairo_status (cr) != CAIRO_STATUS_SUCCESS) {
cairo_test_log ("Error: Function under test left cairo status in an error state: %s\n",
- cairo_status_to_string (cairo_status (cr));
+ cairo_status_to_string (cairo_status (cr)));
return CAIRO_TEST_FAILURE;
}