From 7917e1201fd38089111bb7723256747ae32347e0 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 31 Aug 2006 11:53:16 -0700 Subject: [PATCH] perf: Fix typo in backend blackballing so that image tests now run --- perf/cairo-perf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perf/cairo-perf.c b/perf/cairo-perf.c index ac14cf67e..c442afbdc 100644 --- a/perf/cairo-perf.c +++ b/perf/cairo-perf.c @@ -50,8 +50,8 @@ target_is_measurable (cairo_test_target_t *target) { switch (target->expected_type) { case CAIRO_SURFACE_TYPE_IMAGE: - if (strcmp (target->name, "pdf") || - strcmp (target->name, "ps")) + if (strcmp (target->name, "pdf") == 0 || + strcmp (target->name, "ps") == 0) { return FALSE; }