From c5d5bca53393f56b011b714acbee0f942dce9848 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 2 Dec 2012 17:28:47 +0200 Subject: [PATCH] Fix warning --- tests/testboundaries_ucd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testboundaries_ucd.c b/tests/testboundaries_ucd.c index 886974b..7b03b3e 100644 --- a/tests/testboundaries_ucd.c +++ b/tests/testboundaries_ucd.c @@ -172,7 +172,7 @@ attrs_equal (PangoLogAttr *attrs1, * multiple bits set, and as long as attr&bitmask is not zero, it * counts as being set */ if (((a.bits & bits.bits) && !(b.bits & bits.bits)) || - !(a.bits & bits.bits) && (b.bits & bits.bits)) + (!(a.bits & bits.bits) && (b.bits & bits.bits))) return FALSE; } -- 2.7.4